mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
255 B
Swift
13 lines
255 B
Swift
// RUN: %target-build-swift %s
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
// OS X does not have HomeKit.
|
|
// UNSUPPORTED: OS=macosx
|
|
import HomeKit
|
|
|
|
if #available(iOS 8.0, watchOS 2.0, tvOS 10.0, *) {
|
|
let s: String = HMCharacteristicPropertySupportsEventNotification
|
|
}
|
|
|