blob: 359cdaa6ae338b57f0b36a72d274a2e5a77eb6c4 [file] [log] [blame]
class Super {
final int field;
Super(this.field);
Super(this.field);
}
class Sub extends Super {
Sub(super.field);
}