File tree 1 file changed +17
-17
lines changed
1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ LL | | }
16
16
|
17
17
help: put the `;` outside the block
18
18
|
19
- LL | unsafe {
20
- LL | f(x)
21
- LL | };
19
+ LL ~ unsafe {
20
+ LL + f(x)
21
+ LL + };
22
22
|
23
23
24
24
error: consider moving the `;` outside the block for consistent formatting
@@ -35,12 +35,12 @@ LL | | };
35
35
|
36
36
help: put the `;` outside the block
37
37
|
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;
44
44
...
45
45
46
46
error: consider moving the `;` outside the block for consistent formatting
@@ -54,9 +54,9 @@ LL | | };
54
54
|
55
55
help: put the `;` outside the block
56
56
|
57
- LL | let _d = || {
58
- LL | get_unit()
59
- LL | };
57
+ LL ~ let _d = || {
58
+ LL + get_unit()
59
+ LL + };
60
60
|
61
61
62
62
error: consider moving the `;` outside the block for consistent formatting
@@ -71,11 +71,11 @@ LL | | }
71
71
|
72
72
help: put the `;` outside the block
73
73
|
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 + };
79
79
|
80
80
81
81
error: aborting due to 5 previous errors
You can’t perform that action at this time.
0 commit comments