Files
kotlin-fork/compiler/testData/debug/stepping/localProperty.kt
T
Alexander Udalov c885932a04 Tests: unmute debugging tests for FIR+JVM_IR
The differences between K1 and K2 are pretty unimportant in these tests.
2023-12-18 21:42:35 +00:00

31 lines
425 B
Kotlin
Vendored

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