mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
13 lines
179 B
Java
13 lines
179 B
Java
public class Test {
|
|
|
|
private Bar bar = new Bar();
|
|
|
|
public void <caret>foo(int y) {
|
|
bar.x = y;
|
|
}
|
|
|
|
private static class Bar {
|
|
private int x;
|
|
}
|
|
}
|