[IR] Normalize temp var names in Kotlin-like dump
^KT-61983 Fixed
This commit is contained in:
committed by
Space Team
parent
6c519488a6
commit
bae8b283c7
@@ -1,5 +1,5 @@
|
||||
fun main() {
|
||||
val <destruct>: Pair<Int, Int> = 1.to<Int, Int>(that = 2)
|
||||
val a: Int = <destruct>.component1()
|
||||
val tmp_0: Pair<Int, Int> = 1.to<Int, Int>(that = 2)
|
||||
val a: Int = tmp_0.component1()
|
||||
println(message = a)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user