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