Move lambda out: don't remove block comments

#KT-35357 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-06-09 16:35:56 +09:00
committed by klunnii
parent 6670e4b21d
commit 17176c00ae
7 changed files with 55 additions and 2 deletions
@@ -3,7 +3,7 @@ fun bar(a: Int, b: Int, f: () -> Unit) {}
fun foo(a: Int, b: Int) = 2
fun test() {
bar(1, 2 /* , , */) {
bar(1, 2) /* , , */ {
val a = foo(1, 2)
}
}