Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
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"
}