blob: 8a1abf0be79d18abb863870f8f6518cd4440b0f3 [file] [log] [blame]
public class Test {
private Bar bar = new Bar();
private static class Bar {
private int x;
public void foo(int y) {
x = y;
}
}
}