9 lines
161 B
Plaintext
Vendored
9 lines
161 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
data class My(val first: String, val second: Int)
|
|
|
|
fun foo(list: List<My>) {
|
|
for ((first, second) in list) {
|
|
println(second)
|
|
}
|
|
} |