JVM_IR: fix deserialization of Java static field symbols

This commit is contained in:
Georgy Bronnikov
2021-06-24 14:01:46 +03:00
committed by TeamCityServer
parent 955ee07517
commit fa4efd3303
10 changed files with 52 additions and 6 deletions
@@ -0,0 +1,12 @@
// TARGET_BACKEND: JVM_IR
// WITH_RUNTIME
// FILE: 1.kt
import java.util.Locale
inline fun inlineFun(): String {
val root = Locale.ROOT
return "OK"
}
// FILE: 2.kt
fun box() = inlineFun()