blob: 67a65f7683c7fb46d50e4735808963a21f5f4fc2 [file] [log] [blame]
import 'regress_20394_lib.dart';
class M {}
class C extends Super with M {
C() : super._private(42); /// 01: compile-time error
}
main() {
new C();
}