mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +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;
|
|
}
|
|
}
|
|
}
|