]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/const-match-check.matchck.stderr
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui / consts / const-match-check.matchck.stderr
1 error[E0005]: refutable pattern in local binding: `std::i32::MIN..=-1i32` and `1i32..=std::i32::MAX` not covered
2 --> $DIR/const-match-check.rs:4:22
3 |
4 LL | const X: i32 = { let 0 = 0; 0 };
5 | ^ patterns `std::i32::MIN..=-1i32` and `1i32..=std::i32::MAX` not covered
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
9 help: you might want to use `if let` to ignore the variant that isn't matched
10 |
11 LL | const X: i32 = { if let 0 = 0 { /* */ } 0 };
12 | ^^^^^^^^^^^^^^^^^^^^^^
13
14 error[E0005]: refutable pattern in local binding: `std::i32::MIN..=-1i32` and `1i32..=std::i32::MAX` not covered
15 --> $DIR/const-match-check.rs:8:23
16 |
17 LL | static Y: i32 = { let 0 = 0; 0 };
18 | ^ patterns `std::i32::MIN..=-1i32` and `1i32..=std::i32::MAX` not covered
19 |
20 = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
21 = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
22 help: you might want to use `if let` to ignore the variant that isn't matched
23 |
24 LL | static Y: i32 = { if let 0 = 0 { /* */ } 0 };
25 | ^^^^^^^^^^^^^^^^^^^^^^
26
27 error[E0005]: refutable pattern in local binding: `std::i32::MIN..=-1i32` and `1i32..=std::i32::MAX` not covered
28 --> $DIR/const-match-check.rs:13:26
29 |
30 LL | const X: i32 = { let 0 = 0; 0 };
31 | ^ patterns `std::i32::MIN..=-1i32` and `1i32..=std::i32::MAX` not covered
32 |
33 = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
34 = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
35 help: you might want to use `if let` to ignore the variant that isn't matched
36 |
37 LL | const X: i32 = { if let 0 = 0 { /* */ } 0 };
38 | ^^^^^^^^^^^^^^^^^^^^^^
39
40 error[E0005]: refutable pattern in local binding: `std::i32::MIN..=-1i32` and `1i32..=std::i32::MAX` not covered
41 --> $DIR/const-match-check.rs:19:26
42 |
43 LL | const X: i32 = { let 0 = 0; 0 };
44 | ^ patterns `std::i32::MIN..=-1i32` and `1i32..=std::i32::MAX` not covered
45 |
46 = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
47 = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
48 help: you might want to use `if let` to ignore the variant that isn't matched
49 |
50 LL | const X: i32 = { if let 0 = 0 { /* */ } 0 };
51 | ^^^^^^^^^^^^^^^^^^^^^^
52
53 error: aborting due to 4 previous errors
54
55 For more information about this error, try `rustc --explain E0005`.