]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/const-match-check.eval1.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / consts / const-match-check.eval1.stderr
CommitLineData
e1599b0c 1error[E0005]: refutable pattern in local binding: `std::i32::MIN..=-1i32` and `1i32..=std::i32::MAX` not covered
0731742a 2 --> $DIR/const-match-check.rs:25:15
b7449926
XL
3 |
4LL | A = { let 0 = 0; 0 },
e1599b0c 5 | ^ patterns `std::i32::MIN..=-1i32` and `1i32..=std::i32::MAX` not covered
e74abb32
XL
6 |
7 = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
8 = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
ba9703b0 9 = note: the matched value is of type `i32`
e74abb32
XL
10help: you might want to use `if let` to ignore the variant that isn't matched
11 |
12LL | A = { if let 0 = 0 { /* */ } 0 },
13 | ^^^^^^^^^^^^^^^^^^^^^^
b7449926
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0005`.