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