blob: d9b85ba85a1991242eef30314448222c9ff8dfea [file] [log] [blame]
class Test {
static class ABC{
public int i = 0;
}
static {
System.out.println("" + getABC().<ref>i);
}
static ABC getABC(){
return new ABC();
}
}