blob: a10ed1c541d22c133b2daef40b16eb532bee371f [file]
// @dart = 2.9
library test;
class A implements B {
var x;
}
class B {
var x = 0;
}
main() {}