Files
kotlin-fork/idea/testData/quickfix/migration/lambdaSyntax/lambdaSyntaxMultiple.after.kt
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

8 lines
118 B
Kotlin

// "Migrate lambda syntax in whole project" "true"
val a = fun(): Int {
val b = fun(): Int = 5
return b()
}