aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test2/PrivateMethod.java
blob: 51ed75f7a48789ed3a6068a795ae4582b0b13735 (plain)
1
2
3
4
5
6
7
8
9
10
11
package test2;

class PrivateMethod2 {
    private int f() { return 0; }

    int g() { return f(); }
}

public class PrivateMethod {
    public int i;
}