Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/threeParameters.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

3 lines
102 B
Kotlin
Vendored

fun foo(x: Int, y: Int, z: Int) = x - y / z
val x = { a: Int, b: Int, c: Int <caret>-> foo(a, b, c) }