af247c3344
Don't use `main` function in these tests, because `main` function has specific mangling rules in JVM. Use other function name. ^KT-57755
11 lines
223 B
Kotlin
Vendored
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)
|
|
}
|