blob: f67e4d3a92b1d48c8c8a5cc224f57c578bd328ac [file] [log] [blame]
class C<T> {
foo() => print(T);
}
main() {
new C<int>().foo();
}