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