blob: 1cf77fafaac04f9f44f66d316074ded0d5f4ff2e [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();
}