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