Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
59f7c197ea1f79c0c7cdc3eeb3856ad766100508
/
.
/
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