blob: f7083d92bc5a4d7a312100a9fe931fe1d8970455 [file] [log] [blame]
// RUN: %target-typecheck-verify-swift -disable-objc-attr-requires-foundation-module
@objc protocol P {
associatedtype T
// expected-error@-1 {{associated type 'T' cannot be declared inside '@objc' protocol 'P'}}
}
extension P {
func takesT(_: T) {}
}