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