mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-16 08:39:59 +07:00
10 lines
151 B
Java
10 lines
151 B
Java
class Test {
|
|
static int variable = 1;
|
|
static class Inner{
|
|
int variable = 0;
|
|
static void foo(){
|
|
int val1 = <ref>variable;
|
|
}
|
|
}
|
|
}
|