13 lines
209 B
Kotlin
Vendored
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> {}
|
|
} |