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