blob: 4738a397d6ea6ea3399d780c839b627a44f9897b [file] [log] [blame]
import 'regress20394_lib.dart';
mixin M {}
class C extends Super with M {
C() : super._private(42);
// ^^^^^^^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.UNDEFINED_CONSTRUCTOR_IN_INITIALIZER
// [cfe] Superclass has no constructor named 'Super._private'.
}
main() {
new C();
}