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