Files
swift-mirror/test/Constraints/incomplete_function_ref.swift
2015-09-02 21:13:48 +00:00

14 lines
353 B
Swift

// RUN: %target-parse-verify-swift
struct MyCollection<Element> {
func map<T>(transform: (Element) -> T) -> MyCollection<T> {
fatalError("implement")
}
}
MyCollection.map // expected-error{{generic parameter 'Element' could not be inferred}}
let a = MyCollection<Int>()
a.map // expected-error{{generic parameter 'T' could not be inferred}}