blob: d4a692cdf91814a0ddb04f8ece37c449402c83ff [file] [log] [blame]
String console = "";
class A {
String? get g => "g";
}
class C implements A {
noSuchMethod(Invocation i) {}
}
mixin M on A {
test() {}
noSuchMethod(Invocation i) {}
}
class MA extends C with M {}
main() {}
expect(expected, actual) {}