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