Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/wrongParameterOrder.kt
T
Mikhail Glukhikh 220141ab2b Convert lambda to callable reference intention / inspection #KT-10903 Fixed
(cherry picked from commit b620099)
2016-07-18 17:10:15 +03:00

5 lines
115 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo(y: Int, z: Int) = y - z
val x = { second: Int, first: Int -> foo(first, second) }