Files
kotlin-fork/idea/testData/inspectionsLocal/forEachParameterNotUsed/repeat.kt
T
Mikhail Glukhikh b143a1c8f7 For each parameter not used: handle char sequences correctly
An enhancement for KT-27209
2018-12-11 16:42:04 +03:00

6 lines
108 B
Kotlin
Vendored

// WITH_RUNTIME
// FIX: Replace with 'repeat()'
fun test(list: List<String>) {
list.for<caret>Each {}
}