blob: 08cf46f1074fe2ded23214e8c44dfde49f32ef2c [file] [log] [blame]
class Foo {
void foo(int i){}
class A extends Foo {
void foo(int i){
super.foo(i);
}
}
}