blob: 1690ed06b62164c4606a8e5521bc66301657443c [file]
class B {
final int i;
const new({required this.i});
}
class const C({required int i}) extends B {
this : super(i: i);
}
main() {}