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