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