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