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