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