Skip to content

Commit 165951b

Browse files
committed
--bless tests after rebase.
1 parent 1922656 commit 165951b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/test/ui/parser/match-vec-invalid.stderr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ LL | [1, tail @ .., tail @ ..] => {},
1111
| ^^^^^^^^^
1212
|
1313
= note: for more information, see https://github.com/rust-lang/rust/issues/62254
14-
= help: add #![feature(slice_patterns)] to the crate attributes to enable
14+
= help: add `#![feature(slice_patterns)]` to the crate attributes to enable
1515

1616
error[E0658]: subslice patterns are unstable
1717
--> $DIR/match-vec-invalid.rs:4:24
@@ -20,7 +20,7 @@ LL | [1, tail @ .., tail @ ..] => {},
2020
| ^^^^^^^^^
2121
|
2222
= note: for more information, see https://github.com/rust-lang/rust/issues/62254
23-
= help: add #![feature(slice_patterns)] to the crate attributes to enable
23+
= help: add `#![feature(slice_patterns)]` to the crate attributes to enable
2424

2525
error: `..` can only be used once per slice pattern
2626
--> $DIR/match-vec-invalid.rs:4:31

src/test/ui/parser/pat-lt-bracket-6.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ LL | let Test(&desc[..]) = x;
2323
| ^^
2424
|
2525
= note: for more information, see https://github.com/rust-lang/rust/issues/62254
26-
= help: add #![feature(slice_patterns)] to the crate attributes to enable
26+
= help: add `#![feature(slice_patterns)]` to the crate attributes to enable
2727

2828
error: aborting due to 4 previous errors
2929

src/test/ui/parser/pat-tuple-4.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ LL | (.. pat) => {}
2323
| ^^^^^^
2424
|
2525
= note: for more information, see https://github.com/rust-lang/rust/issues/37854
26-
= help: add #![feature(exclusive_range_pattern)] to the crate attributes to enable
26+
= help: add `#![feature(exclusive_range_pattern)]` to the crate attributes to enable
2727

2828
error[E0029]: only char and numeric types are allowed in range patterns
2929
--> $DIR/pat-tuple-4.rs:3:10

src/test/ui/parser/pat-tuple-5.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ LL | (pat ..) => {}
2323
| ^^^^^^
2424
|
2525
= note: for more information, see https://github.com/rust-lang/rust/issues/37854
26-
= help: add #![feature(exclusive_range_pattern)] to the crate attributes to enable
26+
= help: add `#![feature(exclusive_range_pattern)]` to the crate attributes to enable
2727

2828
error[E0029]: only char and numeric types are allowed in range patterns
2929
--> $DIR/pat-tuple-5.rs:3:10

0 commit comments

Comments
 (0)