Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/wrongParameterOrder.kt
T
Valentin Kipyatkov 21c2268f70 Protection against "<caret>" missing in test data
Many incorrect tests fixed
2016-09-27 18:05:26 +03:00

5 lines
122 B
Kotlin
Vendored

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