Right now block comments do not work the same way as line comments, see below.
We need to fix that
// current
val b =
{ /* do nothing */ /* also do nothing */
}
val c = { -> /* do nothing */
}
private val f: () -> Unit = {
// no-op
}
private val g: () -> Unit =
{ /* no-op */
}
// expected
val b = {
/* do nothing */
/* also do nothing */
}
val c = { ->
/* do nothing */
}
private val f: () -> Unit = {
// no-op
}
private val g: () -> Unit = {
/* no-op */
}
Right now block comments do not work the same way as line comments, see below.
We need to fix that