blob: 9f48a642fd2f5ba88b297522c7fdda1925593c8b [file] [log] [blame]
library test;
class A implements B {
void set x(value) {}
}
abstract class B implements C {
void set x(value);
}
abstract class C {
void set x(int value);
}
main() {}