Files
kotlin-fork/idea/testData/intentions/destructuringInLambda/last.kt
T

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)
}
}