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