Files
kotlin-fork/idea/testData/intentions/joinArgumentList/hasEndOfLineComment.kt
T
2020-08-13 19:53:46 +03:00

10 lines
119 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo(
a: Int, // comment
b: Int
) = 1
val x = foo(
<caret>1, // comment
2
)