Files
kotlin-fork/backend.native/tests/codegen/inline/inline16.kt
T
Konstantin Anisimov 3b5c16076e TESTS: New tests added
2017-02-21 16:12:52 +07:00

18 lines
476 B
Kotlin

@Suppress("NOTHING_TO_INLINE")
inline fun <T, C : MutableCollection<in T>> foo(destination: C, predicate: (T) -> Boolean): C {
for (element in destination) {
val value = element as T
if (!predicate(value)) destination.add(value)
}
return destination
}
fun bar(): Boolean {
val result = foo <Int, MutableList<Int>> (mutableListOf(1, 2, 3)) { true }
return result.isEmpty()
}
fun main(args: Array<String>) {
println(bar().toString())
}