Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b1f59e5f0d739fd4c19f9e413cc9c324657eafed
/
.
/
compiler
/
testData
/
codegen
/
box
/
functions
/
kt785.kt
blob: e3073856d42db94a15d7098f847322a2bcc5e744 [
file
]
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"
}