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