Commits

Doug Gregor committed e0022618654
Diagnose free type variables that correspond to generic parameters. t2.swift:3:1: error: argument for generic parameter 'U' could not be inferred f(i) ^ t2.swift:2:6: note: in call to function 'f' func f<T, U>(t: T) -> U? { return nil } ^ Our lack of decent locator information means that we don't get notes in all of the cases we want them. I'll look at that separately. Swift SVN r21921