KT-6586 accessing Kotlin class static class object variable's value from Java does not properly update between compiles

#KT-6586 fixed

Original commit: d1a2fd9c66
This commit is contained in:
Evgeny Gerashchenko
2015-02-16 16:30:45 +03:00
parent 59855baf7d
commit 5bb5fe0c49
20 changed files with 187 additions and 16 deletions
@@ -0,0 +1,7 @@
import test.*;
class Usage {
public static void main(String[] args) {
System.out.println(Klass.CONST + Klass.CONST);
}
}