9 lines
160 B
Kotlin
Vendored
9 lines
160 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
data class My(val first: String, val second: Int)
|
|
|
|
fun foo(list: List<My>) {
|
|
list.forEach { my<caret> ->
|
|
println(my.second)
|
|
}
|
|
} |