]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-27033.stderr
New upstream version 1.42.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-27033.stderr
CommitLineData
8faf50e0 1error[E0530]: match bindings cannot shadow unit variants
dfeec247 2 --> $DIR/issue-27033.rs:7:9
8faf50e0 3 |
532ac7d7 4LL | None @ _ => {}
8faf50e0 5 | ^^^^ cannot be named the same as a unit variant
e74abb32
XL
6 |
7 ::: $SRC_DIR/libstd/prelude/v1.rs:LL:COL
8 |
60c5eb7d
XL
9LL | pub use crate::option::Option::{self, None, Some};
10 | ---- the unit variant `None` is defined here
8faf50e0
XL
11
12error[E0530]: match bindings cannot shadow constants
dfeec247 13 --> $DIR/issue-27033.rs:11:9
8faf50e0
XL
14 |
15LL | const C: u8 = 1;
13cf67c4 16 | ---------------- the constant `C` is defined here
8faf50e0 17LL | match 1 {
532ac7d7 18LL | C @ 2 => {
8faf50e0
XL
19 | ^ cannot be named the same as a constant
20
21error: aborting due to 2 previous errors
22
23For more information about this error, try `rustc --explain E0530`.