rust/src/test/ui/feature-gate-match_beginning_vert.stderr
est31 38438c618c Migrate a few feature gate tests to ui
Renames only in this commit, and obviously
.stderr file additions.
2017-12-07 10:14:39 +01:00

27 lines
889 B
Plaintext

error: Use of a '|' at the beginning of a match arm is experimental (see issue #44101)
--> $DIR/feature-gate-match_beginning_vert.rs:24:9
|
24 | | A => println!("A"),
| ^
|
= help: add #![feature(match_beginning_vert)] to the crate attributes to enable
error: Use of a '|' at the beginning of a match arm is experimental (see issue #44101)
--> $DIR/feature-gate-match_beginning_vert.rs:26:9
|
26 | | B | C => println!("BC!"),
| ^
|
= help: add #![feature(match_beginning_vert)] to the crate attributes to enable
error: Use of a '|' at the beginning of a match arm is experimental (see issue #44101)
--> $DIR/feature-gate-match_beginning_vert.rs:28:9
|
28 | | _ => {},
| ^
|
= help: add #![feature(match_beginning_vert)] to the crate attributes to enable
error: aborting due to 3 previous errors