Files
kotlin-fork/idea/testData/inspectionsLocal/forEachParameterNotUsed/invoke.kt
T
Mikhail Glukhikh 6048647812 For each parameter unused: support correctly it() case
Related to KT-22068
2018-08-13 19:02:58 +03:00

10 lines
133 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
class My {
operator fun invoke() {}
}
fun bar(my: List<My>) {
my.for<caret>Each { it() }
}