JVM IR: generate private @JvmStatic functions as in old backend

#KT-46181 Fixed
This commit is contained in:
Alexander Udalov
2021-09-02 22:43:52 +02:00
parent ed035d99ab
commit 9a472c418f
13 changed files with 184 additions and 39 deletions
@@ -0,0 +1,12 @@
// JVM_TARGET: 1.8
// WITH_RUNTIME
annotation class Annotation {
companion object {
@JvmStatic val TEST_FIELD = "OK"
var TEST_FIELD2 = ""
@JvmStatic get
@JvmStatic set
}
}