Files
kotlin-fork/compiler/testData/lineNumber/custom/beforeGotoToWhileStart.kt
T

13 lines
155 B
Kotlin
Vendored

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