Files
kotlin-fork/idea/testData/intentions/anonymousFunctionToLambda/emptyBody.kt
T
2016-02-01 13:18:40 +03:00

5 lines
92 B
Kotlin
Vendored

fun acceptLambda(f: () -> Unit) = f()
fun foo() {
acceptLambda(<caret>fun(): Unit {})
}