blob: 80147cae78b6a38bb0e6a185dfbb7710c7ebe873 [file] [log] [blame]
// @dart = 2.9
abstract class Foo {
void _foo();
}
class Bar extends Foo {
dynamic noSuchMethod(Invocation invocation) => null;
}
main() {}