Files
kotlin-fork/compiler/testData/ir/irText/firProblems/kt55458.kt.txt
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

8 lines
152 B
Kotlin
Vendored

fun runMe() {
// COMPOSITE {
val tmp_0: Pair<Int, Int> = 1.to<Int, Int>(that = 2)
val a: Int = tmp_0.component1()
// }
println(message = a)
}