Files
kotlin-fork/idea/testData/intentions/anonymousFunctionToLambda/expressionBody.kt
T
2015-12-17 11:11:18 +03:00

7 lines
90 B
Kotlin
Vendored

fun foo3(f: () -> Int) {
f()
}
fun main(args: String) {
foo3(<caret>fun () = 1)
}