Files
kotlin-fork/compiler/testData/lineNumber/custom/beforeGotoToWhileStart.kt
T
Nikolay Krasko 3d9d6e666d Test several line numbers are generated for one instruction
(cherry picked from commit 1ea9280)
2016-10-05 18:49:38 +03:00

13 lines
156 B
Kotlin
Vendored

fun foo() {
while (true) {
if (testSome()) {
break
}
}
}
fun testSome(): Boolean {
return false
}
// 2 +3 4 2 7 10