J2K breaks code if applied to a java class with static field which is accessed from another java class

#KT-11587 Fixed
This commit is contained in:
Natalia Ukhorskaya
2016-03-24 14:36:46 +03:00
parent c7ae9981cb
commit 79bac598bf
16 changed files with 97 additions and 72 deletions
@@ -6,6 +6,7 @@ class ClassWithStatics {
public static void staticMethod(int p) {}
public static final int staticField = 1;
public static int staticNonFinalField = 1;
protected static int ourValue = 0;