Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
debug
/
stepping
/
IfTrueThenFalse.kt
blob: 58e8d42853dd9972d68c2e75bc04518f888c7f9f [
file
]
//FILE: test.kt
fun cond
()
=
false
fun box
()
{
if
(
cond
())
cond
()
else
false
}
// LINENUMBERS
// TestKt.box():5
// TestKt.cond():2
// TestKt.box():5
// TestKt.box():8
// TestKt.box():9