Files
kotlin-fork/compiler/testData/debug/stepping/localProperty.kt
T
2022-08-05 11:53:40 +00:00

27 lines
329 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// FILE: test.kt
fun box(): String {
val
o
=
"O"
val k = "K"
return o + k
}
// EXPECTATIONS JVM JVM_IR
// test.kt:8 box
// test.kt:6 box
// test.kt:11 box
// test.kt:13 box
// EXPECTATIONS JS_IR
// test.kt:8 box
// test.kt:11 box
// test.kt:13 box