mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
10 lines
225 B
Swift
10 lines
225 B
Swift
// RUN: %target-typecheck-verify-swift -enable-objc-interop
|
|
|
|
@objc class HasStaticProperties {
|
|
@objc class var staticVar1: Int { return 4 }
|
|
}
|
|
|
|
func testStaticProperty(classObj: AnyObject.Type) {
|
|
_ = classObj.staticVar1
|
|
}
|