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