Skip to content

Commit ccbb200

Browse files
committed
Fixed .stderr files
1 parent 27fe047 commit ccbb200

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

tests/ui/semicolon_outside_block.stderr

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ LL | | }
1616
|
1717
help: put the `;` outside the block
1818
|
19-
LL | unsafe {
20-
LL | f(x)
21-
LL | };
19+
LL ~ unsafe {
20+
LL + f(x)
21+
LL + };
2222
|
2323

2424
error: consider moving the `;` outside the block for consistent formatting
@@ -35,12 +35,12 @@ LL | | };
3535
|
3636
help: put the `;` outside the block
3737
|
38-
LL | unsafe {
39-
LL | let _this = 1;
40-
LL | let _is = 2;
41-
LL | let _a = 3;
42-
LL | let _long = 4;
43-
LL | let _list = 5;
38+
LL ~ unsafe {
39+
LL + let _this = 1;
40+
LL + let _is = 2;
41+
LL + let _a = 3;
42+
LL + let _long = 4;
43+
LL + let _list = 5;
4444
...
4545

4646
error: consider moving the `;` outside the block for consistent formatting
@@ -54,9 +54,9 @@ LL | | };
5454
|
5555
help: put the `;` outside the block
5656
|
57-
LL | let _d = || {
58-
LL | get_unit()
59-
LL | };
57+
LL ~ let _d = || {
58+
LL + get_unit()
59+
LL + };
6060
|
6161

6262
error: consider moving the `;` outside the block for consistent formatting
@@ -71,11 +71,11 @@ LL | | }
7171
|
7272
help: put the `;` outside the block
7373
|
74-
LL | {
75-
LL | let y = 42;
76-
LL | x = y + 1;
77-
LL | get_unit()
78-
LL | };
74+
LL ~ {
75+
LL + let y = 42;
76+
LL + x = y + 1;
77+
LL + get_unit()
78+
LL + };
7979
|
8080

8181
error: aborting due to 5 previous errors

0 commit comments

Comments
 (0)