8da5af3a10
#KT-11974 Fixed
10 lines
169 B
Kotlin
Vendored
10 lines
169 B
Kotlin
Vendored
fun foo(list: List<String>) {
|
|
for (s in list)
|
|
<caret>if (s.length > 0 /* check it */) /* then */ {
|
|
bar() // bar()
|
|
}
|
|
}
|
|
}
|
|
|
|
fun bar(){}
|