Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/wrongNamedOrder.kt
T

5 lines
112 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo(x: Int, y: Int) = x + y
val x = { x: Int, y: Int <caret>-> foo(y = x, x = y) }