Debugger: Remove/change tests for the deprecated Android dex

This commit is contained in:
Yan Zhulanow
2019-11-21 02:41:22 +09:00
parent f912602ddc
commit dd743f05c1
69 changed files with 300 additions and 853 deletions
@@ -0,0 +1,22 @@
// FILE: soInlineIterableFun.kt
package soInlineIterableFun
fun main(args: Array<String>) {
//Breakpoint!
val list = listOf(1, 2, 3)
list.any1 { it > 2 }
foo()
}
fun foo() {
}
inline fun <T> Iterable<T>.any1(predicate: (T) -> Boolean): Boolean {
for (element in this) if (predicate(element)) return true
return false
}
// STEP_OVER: 5