c885932a04
The differences between K1 and K2 are pretty unimportant in these tests.
31 lines
425 B
Kotlin
Vendored
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
|