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