blob: 71382d798dbf753e57dd53964cbe3c30c09ddc93 [file] [log] [blame]
library test;
abstract class I2 {
num get x;
}
class C extends Object implements I1, I2 {
int get x => 0;
}
class I1 {
final x = y;
}
main() {}
var y = new C().x;