blob: 228de69272c2c5bb1d29ff26e2afc67588607e1b [file] [log] [blame]
// @dart = 2.9
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;