Files
kotlin-fork/idea/testData/intentions/removeEmptyParenthesesFromLambdaCall/afterLambda6.kt
T

13 lines
209 B
Kotlin
Vendored

// IS_APPLICABLE: false
object A {
object B {
class C {
fun returnFun(fn: () -> Unit): (() -> Unit) -> Unit = {}
}
}
}
fun test() {
A.B.C().returnFun {} ()<caret> {}
}