Fix error with interpreting name of java property

This commit is contained in:
Ivan Kylchik
2022-05-23 15:54:26 +03:00
committed by teamcity
parent af6f17c243
commit 07ba9be2e0
6 changed files with 29 additions and 6 deletions
@@ -0,0 +1,7 @@
// FILE: Main.kt
const val name = <!EVALUATED: `SOME_PROPERTY`!>ClassWithProperty::SOME_PROPERTY.name<!>
// FILE: ClassWithProperty.java
public class ClassWithProperty {
public boolean SOME_PROPERTY = false;
}