// WITH_RUNTIME fun testEmpty(ss: List) { for (s in ss); } fun testIterable(ss: List) { for (s in ss) { println(s) } } fun testDestructuring(pp: List>) { for ((i, s) in pp) { println(i) println(s) } }