blob: fccbad01c75d8129a4a9e7053b3ef948c9427048 [file] [log] [blame]
library test;
class B {
void f() {}
}
class C extends B {
f() {}
}
var x = new C().f();
main() {}