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