Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
script
/
secondLevelFunction.kts
blob: 03bf7f821a1cd7d6b8aeef5f8ee2fea6c6c9a163 [
file
] [
log
] [
blame
]
var
x
:
Int
=
0
if
(
true
)
{
fun foo
(
y
:
Int
)
=
y
+
20
x
=
foo
(
9
)
}
val rv
=
x
// expected: rv: 29