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