summaryrefslogtreecommitdiffstats
path: root/src/test/test3/InnerMethod.java
blob: d00aa2b03afedde3b144a7d8f7c05cc09a425b7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package test3;

public class InnerMethod {
    static int f = 0;
    static int counter = 3;
    private static void test() {}
    static Inner inner = new Inner();

    static class Inner {
        protected static void test() { f = 1; }
    }

    public int foo() {
        test();
        return f;
    }
}