mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
13 lines
172 B
Java
13 lines
172 B
Java
class Test {
|
|
static class ABC{
|
|
public int i = 0;
|
|
}
|
|
static {
|
|
System.out.println("" + getABC().<ref>i);
|
|
}
|
|
|
|
static ABC getABC(){
|
|
return new ABC();
|
|
}
|
|
}
|