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