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