blob: 90f02bb48946d411c34dc94cef815b80eaaa6fb0 [file] [log] [blame]
library test;
class C<T> {
T? t;
C._();
factory C(T t) {}
}
test() {}
main() {}