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