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,14 @@
// WITH_RUNTIME
// JVM_TARGET: 1.8
object TestObject {
@JvmStatic
external fun foo()
}
class TestClassCompanion {
companion object {
@JvmStatic
external fun foo()
}
}