20 lines
283 B
Kotlin
Vendored
20 lines
283 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun testEmpty(ss: List<String>) {
|
|
for (s in ss);
|
|
}
|
|
|
|
fun testIterable(ss: List<String>) {
|
|
for (s in ss) {
|
|
println(s)
|
|
}
|
|
}
|
|
|
|
fun testDestructuring(pp: List<Pair<Int, String>>) {
|
|
for ((i, s) in pp) {
|
|
println(i)
|
|
println(s)
|
|
}
|
|
}
|
|
|