Skip to content

Commit fea410d

Browse files
committed
Bump rustc version
1 parent 5b2cb61 commit fea410d

File tree

4 files changed

+24
-7
lines changed

4 files changed

+24
-7
lines changed

tests/integrations/basic-fail/tests/actual_tests_bless/rustfix-fail-revisions.a.stderr

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ error: expected `,` following `match` arm
22
--> tests/actual_tests_bless/rustfix-fail-revisions.rs:6:27
33
|
44
6 | 0 => String::new()
5-
| ^ help: missing a comma here to end this `match` arm: `,`
5+
| ^
6+
|
7+
help: missing a comma here to end this `match` arm
8+
|
9+
6 | 0 => String::new(),
10+
| +
611

712
error: aborting due to 1 previous error
813

tests/integrations/basic-fail/tests/actual_tests_bless/rustfix-fail-revisions.b.stderr

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ error: expected `,` following `match` arm
22
--> tests/actual_tests_bless/rustfix-fail-revisions.rs:6:27
33
|
44
6 | 0 => String::new()
5-
| ^ help: missing a comma here to end this `match` arm: `,`
5+
| ^
6+
|
7+
help: missing a comma here to end this `match` arm
8+
|
9+
6 | 0 => String::new(),
10+
| +
611

712
error: aborting due to 1 previous error
813

tests/integrations/basic-fail/tests/actual_tests_bless/rustfix-fail.stderr

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ error: expected `,` following `match` arm
22
--> tests/actual_tests_bless/rustfix-fail.rs:5:27
33
|
44
5 | 0 => String::new()
5-
| ^ help: missing a comma here to end this `match` arm: `,`
5+
| ^
6+
|
7+
help: missing a comma here to end this `match` arm
8+
|
9+
5 | 0 => String::new(),
10+
| +
611

712
error: aborting due to 1 previous error
813

tests/integrations/basic/tests/actual_tests/aux_derive.stderr

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ error[E0384]: cannot assign twice to immutable variable `x`
2020
--> tests/actual_tests/aux_derive.rs:8:5
2121
|
2222
7 | let x = Foo;
23-
| -
24-
| |
25-
| first assignment to `x`
26-
| help: consider making this binding mutable: `mut x`
23+
| - first assignment to `x`
2724
8 | x = Foo;
2825
| ^^^^^^^ cannot assign twice to immutable variable
26+
|
27+
help: consider making this binding mutable
28+
|
29+
7 | let mut x = Foo;
30+
| +++
2931

3032
error: aborting due to 1 previous error; 2 warnings emitted
3133

0 commit comments

Comments
 (0)