Files
kotlin-fork/compiler/testData/ir/irText/assignments.kt
T

11 lines
111 B
Kotlin
Vendored

class Ref(var x: Int)
fun test1() {
var x = 0
x = 1
x = x + 1
}
fun test2(r: Ref) {
r.x = 0
}