Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
js
/
js.translator
/
testData
/
lineNumbers
/
conditionalDecomposed.kt
blob: 195585c8a05b17465f63184fe5124836aff35b61 [
file
] [
log
] [
blame
]
fun box
(
x
:
Int
)
{
println
(
if
(
x
>
100
)
42
else
foo
()
)
}
private
inline
fun foo
():
Int
{
println
(
"foo"
)
return
23
}
// LINES: 10 3 3 3 4 3 6 13 13 3 14 2 15 13 13 14 14