Files
kotlin-fork/compiler/testData/ir/irText/firProblems/kt55458.kt.txt
T
Vladimir Sukharev bae8b283c7 [IR] Normalize temp var names in Kotlin-like dump
^KT-61983 Fixed
2023-10-11 07:49:35 +00:00

8 lines
151 B
Kotlin
Vendored

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