DEBSOURCES
Skip Quicknav
sources / kotlin / 1.3.31%2Bds1-3 / idea / resources / intentionDescriptions / AnonymousFunctionToLambdaIntention / before.kt.template
123456789
fun foo(f: () -> Int) { f() } fun main(args: String) { foo(fun(): Int { return 1 }) }