// RUN: not %target-swift-frontend -typecheck %s // https://github.com/apple/swift/issues/50627 @objc protocol Foo { associatedtype Bar var property: Generic { get } } class Generic { } class FooImpl: NSObject, Foo { let property: Generic }