Files
kotlin-fork/compiler/fir/resolve/testData/resolveWithStdlib/removeIf.kt
T
2020-02-17 14:45:43 +03:00

5 lines
96 B
Kotlin
Vendored

// FULL_JDK
fun test(collection: MutableCollection<Boolean>) {
collection.removeIf { it }
}