blob: bf31270eb542badd7100e6be65e226863dea9ee1 [file] [log] [blame]
// @dart = 2.9
class X {
void _foo() async {}
void foo() => _foo();
}
class Y implements X {
void noSuchMethod(Invocation _) {}
}
main() {}