blob: acb59bc1df3e91928589fa0bf3f205284deb0085 [file] [log] [blame]
// @dart = 2.9
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() {}