mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
11 lines
143 B
Java
11 lines
143 B
Java
public class Test{
|
|
int a = 0;
|
|
}
|
|
|
|
class Test1 {
|
|
static Test test = new Test();
|
|
static {
|
|
System.out.println("" + test.<caret>a);
|
|
}
|
|
}
|