blob: ddd8003c0821f7c64ef2d6723191abddcd8792d6 [file] [log] [blame] [edit]
class C {
const C._(this.field);
const C.v1() : this._(1);
const C.vn() : this._(null);
final int? field;
}
extension type const E._(int? _) {
const E.v1() : this._(1);
const E.vn() : this._(null);
}
void main() {}