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

6 lines
74 B
Kotlin

val h = { -> }
val l = bar@ fun Int.bar() {
}
val s = (fun(): Int = 5)()