6 lines
79 B
Kotlin
Vendored
6 lines
79 B
Kotlin
Vendored
fun foo() {
|
|
for (i in 1..10)
|
|
<caret>if (i > 1) bar()
|
|
}
|
|
|
|
fun bar(){} |