mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
312 B
Swift
13 lines
312 B
Swift
// RUN: %target-build-swift %s
|
|
// REQUIRES: executable_test
|
|
|
|
// FIXME: iOS does not have Cocoa.framework
|
|
// REQUIRES: OS=macosx
|
|
|
|
import Cocoa
|
|
|
|
// Make sure the ObjectiveC adapter module gets imported, including ObjCSel.
|
|
func rdar14759044(obj: NSObject) -> Bool {
|
|
return obj.responds(to: "abc") // no-warning
|
|
}
|