Files
kotlin-fork/idea/testData/intentions/branched/ifWhen/ifToWhen/withInternalLoopOnly.kt
T

14 lines
228 B
Kotlin
Vendored

// WITH_RUNTIME
fun testIf(x: Any) {
<caret>if (x is String) {
println(x)
for (c in x) {
if (c == ' ')
break // do not change
}
}
else {
println(x)
}
}