Files
kotlin-fork/compiler/testData/codegen/box/functions/kt785.kt
T
Alexander Udalov 41a416da60 Move blackBoxFile() testData to box/ directory
Delete all test methods (and empty test classes), since they'll be
auto-generated
2013-01-28 18:20:17 +04:00

14 lines
184 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"
}