feb9dd4d83
So #KT-16828 Fixed
10 lines
209 B
Plaintext
Vendored
10 lines
209 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
data class My(val first: String, val second: Int, val third: Boolean)
|
|
|
|
fun foo(list: List<My>) {
|
|
list.forEach { (_, second, third) ->
|
|
println(second)
|
|
println(third)
|
|
}
|
|
} |