Files
swift-mirror/test/Interpreter/SDK/submodules_smoke_test.swift
Doug Gregor ae6b41dc37 Clang importer: enable the Swift name lookup tables by default.
Fixes rdar://problem/14776565 (AnyObject lookup for Objective-C
properties with custom getters) and rdar://problem/17184411 (allowing
__attribute__((swift_name("foo"))) to work on anything).
2015-12-21 09:55:21 -08:00

21 lines
549 B
Swift

// RUN: %target-build-swift -parse %s -Xfrontend -verify
// RUN: %target-build-swift -emit-ir -g %s -DNO_ERROR > /dev/null
// REQUIRES: executable_test
// REQUIRES: objc_interop
// REQUIRES: OS=macosx
import OpenGL.GL3
_ = glGetString
_ = OpenGL.glGetString
import AppKit.NSPanGestureRecognizer
@available(OSX, introduced=10.10)
typealias PanRecognizer = NSPanGestureRecognizer
typealias PanRecognizer2 = AppKit.NSPanGestureRecognizer
#if !NO_ERROR
_ = glVertexPointer // expected-error{{use of unresolved identifier 'glVertexPointer'}}
#endif