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

7 lines
127 B
Kotlin
Vendored

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