Files
kotlin-fork/idea/testData/quickfix/migration/lambdaSyntax/lambdaInsideLambda.kt.after
T
Denis Zharkov b650753643 Change formatting of function expressions without names
No spaces between 'fun' and value parameter list
2015-05-20 09:24:56 +03:00

10 lines
111 B
Plaintext

// "Migrate lambda syntax" "true"
class A
fun foo(a: Any) {}
val a = foo a@ {
val a = fun(): Int = 1
}