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