blob: fe8dfbf617fa2182ff997942f318981ea184442a [file] [log] [blame]
// Method to test: generative_constructor(C#)
class C<T> {
C() { print(T); }
foo() => print(T);
}
main() {
new C<int>();
}