Files
kotlin-fork/idea/testData/intentions/removeEmptyParenthesesFromLambdaCall/afterLambda2.kt
T
2018-05-22 15:45:02 +03:00

7 lines
138 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun returnFun(fn: () -> Unit, i: Int): (() -> Unit) -> Unit = {}
fun test() {
returnFun({}, 1)()<caret> {}
}