blob: 699b12b06aa18629171e380b42ffce492b9cd164 [file] [log] [blame]
// @dart = 2.9
library test;
class B {
void f() {}
}
class C extends B {
f() {}
}
main() {}
var x = new C().f();