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