Files
kotlin-fork/backend.native/tests/external/codegen/box/functions/kt785.kt
T
2017-03-13 15:31:46 +03:00

14 lines
178 B
Kotlin

class A() {
var x : Int = 0
var z = {
x++
}
}
fun box() : String {
val a = A()
a.z() //problem is here
return if (a.x == 1) "OK" else "fail"
}