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,13 @@
// WITH_RUNTIME
class WithCompanion {
companion object {
@JvmStatic
fun foo(x: Int = 1) {}
}
}
object AnObject {
@JvmStatic
fun foo(x: Int = 1) {}
}