blob: bb60edcdde48f0c1e1ad5fb5cb2421e940f14e2d [file] [log] [blame]
library test;
class A {
final int x = 2;
}
class B implements A {
get x => 3;
}
foo() {}
main() {}