3d9d6e666d
(cherry picked from commit 1ea9280)
13 lines
156 B
Kotlin
Vendored
13 lines
156 B
Kotlin
Vendored
fun foo() {
|
|
while (true) {
|
|
if (testSome()) {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
fun testSome(): Boolean {
|
|
return false
|
|
}
|
|
|
|
// 2 +3 4 2 7 10 |