Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt1578.kt
blob: d1aeecf86bf62fcc360f8c4db51fe192c16d046e [
file
] [
log
] [
blame
]
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"
}