Resolve compileTimeInitializer for variable in lazy resolve

This commit is contained in:
Natalia Ukhorskaya
2014-02-21 13:54:57 +04:00
parent 89d99d2848
commit 4a8bcc614a
13 changed files with 133 additions and 32 deletions

View File

@@ -0,0 +1,6 @@
package test;
public final class ClassWithConstVal {
public final int f = 1;
public final int f2 = f;
}