mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-16 08:39:59 +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();
|
|
}
|
|
}
|