blob: 5a076f8a4a7c48b39a7be2a4c4c6a7b7a11c7d57 [file] [log] [blame]
int count = 0;
abstract class A {
int? foo;
}
mixin class B implements A {
noSuchMethod(i) {}
}
class C extends Object with B {
int? get foo => 42;
void set foo(int? value) {}
}
main() {}