blob: c20e3997ab09de19aa6dacf6a5ce74c3ab7d5ace [file] [log] [blame]
// FIR_IDENTICAL
class Ref(var x: Int)
fun test1() {
var x = 0
x = 1
x = x + 1
}
fun test2(r: Ref) {
r.x = 0
}