blob: a728896efcca6422d7185f5636ef62617ba4dc85 [file] [log] [blame]
// RUN: %target-typecheck-verify-swift
@objc class HasStaticProperties {
@objc class var staticVar1: Int { return 4 }
}
func testStaticProperty(classObj: AnyObject.Type) {
_ = classObj.staticVar1
}