Files
kotlin-fork/idea/testData/intentions/removeEmptyParenthesesFromLambdaCall/afterLambda3.kt
T
2018-05-22 16:18:42 +03:00

7 lines
122 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun returnFun2(i: Int): (() -> Unit) -> Unit = {}
fun test22() {
returnFun2(1)()<caret> {}
}