// RUN: %target-typecheck-verify-swift struct MyCollection { // expected-note {{'Element' declared as parameter to type 'MyCollection'}} func map(_ transform: (Element) -> T) -> MyCollection { // expected-note 2 {{in call to function 'map'}} fatalError("implement") } } MyCollection.map // expected-error{{generic parameter 'Element' could not be inferred}} expected-note {{explicitly specify the generic arguments to fix this issue}} {{13-13=}} // expected-error@-1 {{generic parameter 'T' could not be inferred}} let a = MyCollection() a.map // expected-error{{generic parameter 'T' could not be inferred}}