Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
exitPoints
/
inlineWithNoInlineParam.kt
blob: 9f48b5ea9c7b990ac6a6e149ae3db2ec508f7582 [
file
]
fun f
(
a
:
Int
):
Int
{
if
(
a
<
5
)
{
run1
(
fun
():
Int
{
<caret>
return
1
})
}
return
2
}
inline
public
fun
<
T
>
run1
(
noinline f
:
()
->
T
):
T
{
}
//HIGHLIGHTED: return 1