Files
kotlin-fork/compiler/testData/codegen/box/fir/jvmFieldInLocalClass.kt
T
2021-08-13 11:13:58 +03:00

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
}