blob: 86136c83200d8117b7d0488a776053ff3f3ed358 [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() {}