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