TESTS: New tests added

This commit is contained in:
Konstantin Anisimov
2017-02-20 16:52:07 +07:00
parent a52a51b7fa
commit 3b5c16076e
4 changed files with 61 additions and 0 deletions
@@ -0,0 +1,17 @@
@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())
}