mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
30 lines
1007 B
Swift
30 lines
1007 B
Swift
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -enable-objc-interop -enable-source-import -emit-ir -o - -primary-file %s | %FileCheck %s
|
|
|
|
// REQUIRES: CPU=x86_64
|
|
|
|
// FIXME: This test uses IRGen with -enable-source-import; it may fail with -g.
|
|
|
|
import Properties
|
|
|
|
// CHECK: @_INSTANCE_METHODS__TtC24objc_properties_imported21OverridesBoolProperty{{.*}}_selector_data(isEnabled){{.*}}L_selector_data(setIsEnabled:)
|
|
class OverridesBoolProperty : HasProperties {
|
|
override var enabled : Bool {
|
|
@objc(isEnabled) get {
|
|
return super.enabled
|
|
}
|
|
@objc(setIsEnabled:) set {
|
|
super.enabled = newValue
|
|
}
|
|
}
|
|
}
|
|
|
|
// CHECK-LABEL: define hidden swiftcc void @"$s24objc_properties_imported16testBoolProperty{{[_0-9a-zA-Z]*}}F"
|
|
func testBoolProperty(hp: HasProperties) {
|
|
// CHECK-NOT: ret void
|
|
// CHECK: load ptr, ptr @"\01L_selector(isEnabled)"
|
|
// CHECK-NOT: ret void
|
|
// CHECK: load ptr, ptr @"\01L_selector(setIsEnabled:)"
|
|
hp.enabled = !hp.enabled
|
|
// CHECK: ret void
|
|
}
|