5b3816cce5
treat it as a general one, introduce *_K1 and *_K2 variants for more specific ignoring
27 lines
328 B
Kotlin
Vendored
27 lines
328 B
Kotlin
Vendored
// 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: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
|