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