blob: 0f6709336d0b2d0b806a9e46714262618fef4b66 [file] [log] [blame]
// @dart = 2.9
library test;
class C<T> {
T t;
C(this.t);
}
test() {}
main() {}