blob: 7c668e73eb487fdafa4cc1a5db5eb01ad5bdab28 [file] [log] [blame]
package p;
class A {
void f(){
int y= 1 +x();
}
private int x() {
return 0;
}
}