blob: 7ce56aee23fe053008f302d4468ac68487719139 [file] [log] [blame]
class M {
dynamic noSuchMethod(Invocation invocation) => null;
}
class A extends M {
void call(String s);
}
main() {}