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