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