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