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