Files
kotlin-fork/idea/testData/formatter/CommentInExpressionBodies.kt
T
2018-12-26 15:39:40 +03:00

17 lines
192 B
Kotlin
Vendored

fun foo() =
// comment
1
val some =
// Comment
2
fun some() {
val (a, b) =
// Some
1 to 3
}
fun nice() =
/* Ha! */
2