blob: 7ab22b6c48d88ea63e97fcf743a2663a6aa360fe [file] [log] [blame]
library test;
class A implements B {
var x;
}
abstract class B implements C {
get x;
}
abstract class C {
int? get x;
}
main() {}