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:
@@ -0,0 +1,8 @@
|
||||
public class Foo {
|
||||
private static final int INITIALIZED_CONST = 0;
|
||||
private static int initializedStaticField = 0;
|
||||
static {
|
||||
System.out.println(Foo.INITIALIZED_CONST);
|
||||
System.out.println(Foo.initializedStaticField);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user