mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
17 lines
242 B
Java
17 lines
242 B
Java
class Main {
|
|
int getSomething() {return 0;}
|
|
|
|
void testSimple() {
|
|
class X {
|
|
private int smth = getSomething();
|
|
|
|
void test() {
|
|
int x = smth;
|
|
}
|
|
|
|
void test2() {
|
|
int y = smth;
|
|
}
|
|
}
|
|
}
|
|
} |