Files
kotlin-fork/compiler/testData/ir/irText/firProblems/kt55458.kt
T
Dmitriy Dolovov af247c3344 IR text tests: Unmute tests that have main function
Don't use `main` function in these tests, because `main` function
has specific mangling rules in JVM. Use other function name.

^KT-57755
2023-12-19 14:24:16 +00:00

11 lines
223 B
Kotlin
Vendored

// WITH_STDLIB
// IGNORE_BACKEND_K1: JS_IR
// KT-61141: `println (message: kotlin.Any?)` instead of `println (message: kotlin.Int)`
// IGNORE_BACKEND_K1: NATIVE
fun runMe() {
val (a: Any, _) = 1 to 2
println(a)
}