Files
kotlin-fork/idea/testData/intentions/lambdaToAnonymousFunction/noParameter.kt
T
2018-05-16 13:01:38 +03:00

5 lines
68 B
Kotlin
Vendored

fun foo(f: () -> String) {}
fun test() {
foo { <caret>-> "" }
}