Files
kotlin-fork/idea/resources/intentionDescriptions/AnonymousFunctionToLambdaIntention/before.kt.template
T
2015-12-17 11:11:18 +03:00

9 lines
106 B
Plaintext

fun foo(f: () -> Int) {
f()
}
fun main(args: String) {
foo(fun(): Int {
return 1
})
}