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