Files
kotlin-fork/compiler/testData/debug/stepping/localProperty.kt
T
2023-08-15 17:03:11 +00:00

28 lines
352 B
Kotlin
Vendored

// IGNORE_BACKEND: WASM
// IGNORE_BACKEND_K2: JVM_IR
// FILE: test.kt
fun box(): String {
val
o
=
"O"
val k = "K"
return o + k
}
// EXPECTATIONS JVM JVM_IR
// test.kt:9 box
// test.kt:7 box
// test.kt:12 box
// test.kt:14 box
// EXPECTATIONS JS_IR
// test.kt:9 box
// test.kt:12 box
// test.kt:14 box