Files
kotlin-fork/compiler/testData/ir/irText/lambdas/destructuringInLambda.kt
T

3 lines
79 B
Kotlin
Vendored

data class A(val x: Int, val y: Int)
var fn: (A) -> Int = { (_, y) -> 42 + y }