blob: 34ce1a33c9e334cb1d2a5d8a853fd2d63f097016 [file] [log] [blame]
library test;
class A {
var x;
}
class B implements A {
var x = 2;
}
foo() {}
main() {}