mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 07:28:24 +07:00
13 lines
185 B
Plaintext
13 lines
185 B
Plaintext
public class Test {
|
|
|
|
private Bar bar = new Bar();
|
|
|
|
private static class Bar {
|
|
private int x;
|
|
|
|
public void foo(int x) {
|
|
this.x = x;
|
|
}
|
|
}
|
|
}
|