Files
kotlin-fork/idea/testData/inspectionsLocal/moveLambdaOutsideParentheses/hasComments2.kt
T
Toshiaki Kameyama 17176c00ae Move lambda out: don't remove block comments
#KT-35357 Fixed
2020-09-24 12:05:43 +02:00

5 lines
117 B
Kotlin
Vendored

fun foo(i: Int, f: () -> Unit) {}
fun test() {
foo(1, /* c1 */ /* c2 */ <caret>{ /* c3 */ } /* c4 */ /* c5 */)
}