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