blob: a2d8b311fc1029ddc01b569f18efabbaf655664c [file] [log] [blame]
library test;
class C {
D<T> f<T>() => throw '';
}
class D<T> {}
var f = new C().f<int>();
main() {}