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