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