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