Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49b2ac1b100c5042a0e98582713938062efa6a31
/
.
/
compiler
/
testData
/
codegen
/
script
/
secondLevelFunctionClosure.kts
blob: a6257b8219eb1edc7950069f5b91df2ce50d80de [
file
]
val z
=
30
var
x
:
Int
=
0
if
(
true
)
{
fun foo
()
=
z
+
20
x
=
foo
()
}
val rv
=
x
// expected: rv: 50