blob: b67f00da68bb8ff8181e9d569c67ca6b375f57bc [file] [log] [blame]
// @dart = 2.9
library test;
class A {
final x = null;
}
class B implements A {
final x = 2;
}
foo() {}
main() {}