blob: a31ede58865a5e56d27ccbbd75ef6ac0ce52c717 [file] [log] [blame]
class A extends Test{
void foo(int i) {
super.foo(i);
System.out.println(i++);
}
void bazz(){
foo(0);
}
}