Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt1578.kt
blob: d1aeecf86bf62fcc360f8c4db51fe192c16d046e [
file
]
fun box
()
:
String
{
var
i
=
0
val
lambda
=
{
i
++
}
lambda
()
i
++
//the problem is here
// i = i + 1 //this way it works
return
if
(
i
==
2
)
"OK"
else
"fail"
}