package p;
class A {
    void f(){
        int y= 1 +x();
    }
    private int x() {
        return 0;
    }
} 