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