f6413c41a0
#KT-48175 Fixed
12 lines
156 B
Kotlin
Vendored
12 lines
156 B
Kotlin
Vendored
// TARGET_BACKEND: JVM_IR
|
|
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
class Bean {
|
|
@JvmField
|
|
val a: String = "OK"
|
|
}
|
|
|
|
return Bean().a
|
|
}
|