blob: 0b5f6ae87aa00f87c669de38effb44bb0100b004 [file] [log] [blame]
// @dart = 2.9
class A {
void foo(int x) {}
void set foo(int x);
dynamic noSuchMethod(Invocation i) => null;
}
main() {}