Skip to content

Commit f4b91e3

Browse files
committed
Fix indent-comments test
We cannot remove braces after a new line, to prevent from removing braces in stat seq.
1 parent de76335 commit f4b91e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/rewrites/indent-comments.check

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
class A: /* 1 */ /* 2 */
33
def m1(b: Boolean) = /* 3 */ /* 4 */
44
val x = if (b)
5-
/* 5 */
5+
/* 5 */ {
66
"true"
7-
/* 6 */
7+
} /* 6 */
88
else
99
/* 7 */
1010
"false"

0 commit comments

Comments
 (0)