mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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).
21 lines
549 B
Swift
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
|