blob: 49e816acf947da954562898fd452b59127b80e8b [file] [log] [blame]
class A {
int get getter => 42;
void set setter(int i) {}
int field;
int get property => 42;
void set property(int i) {}
}
class B implements A {
@override
noSuchMethod(Invocation invocation) => null;
}
main() {}