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