Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
cfg
/
declarations
/
functions
/
namedFunctionInBlock.kt
blob: 0e679a7cd92753ef127bced5ade331411655f2bc [
file
]
fun test
(
b
:
Boolean
):
(
Int
)
->
Int
{
if
(
b
)
{
fun foo
(
n
:
Int
)
=
n
+
1
}
else
{
fun bar
(
n
:
Int
)
=
n
-
1
}
}