Files
kotlin-fork/idea/testData/formatter/DanglingComments.kt
T
2017-07-10 15:32:42 +03:00

13 lines
179 B
Kotlin
Vendored

fun x1() = // cx1
42
fun x2() = /* cx2 */
42
fun x3() {
1 + // cx4_1
2
1 + /* cx4_2 */
2
}