aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test5/NestHost.java
blob: 045d9d3036df00885e583167f119280c418e49dd (plain)
1
2
3
4
5
6
7
8
9
10
11
package test5;

public class NestHost {
    private int value;
    public class Foo {
        int foo() { return value++; } 
    }
    public class Bar {
        int bar() { return value++; }
    }
}