mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
copy classes: ensure refs are updated one after another (IDEA-141658)
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
public class Bar {
|
||||
private static final int INITIALIZED_CONST = 0;
|
||||
private static int initializedStaticField = 0;
|
||||
static {
|
||||
System.out.println(Bar.INITIALIZED_CONST);
|
||||
System.out.println(Bar.initializedStaticField);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user