Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
exitPoints
/
localFunction2.kt
blob: 002d16e216d4ff6033b100fb00c5af4a2bced3e7 [
file
] [
log
] [
blame
]
fun f
(
a
:
Int
):
Int
{
fun localFun
()
{
return
}
if
(
a
<
5
)
{
return
1
}
else
{
<caret>
return
2
}
}
//HIGHLIGHTED: return 1
//HIGHLIGHTED: return 2