blob: 8d922a3c2114e79840eb4a5c2ac72de1f24dcb9d [file] [log] [blame]
library test;
class C {
D<T> f<T>() => null;
}
class D<T> {}
main() {}
var f = new C().f<int>();