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