]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-err-multi.stderr
Do not suggest `let_else` if no bindings would be introduced
[rust.git] / src / test / ui / consts / const-err-multi.stderr
1 error: any use of this value will cause an error
2   --> $DIR/const-err-multi.rs:3:19
3    |
4 LL | pub const A: i8 = -i8::MIN;
5    | ------------------^^^^^^^^-
6    |                   |
7    |                   attempt to negate `i8::MIN`, which would overflow
8    |
9 note: the lint level is defined here
10   --> $DIR/const-err-multi.rs:1:9
11    |
12 LL | #![deny(const_err)]
13    |         ^^^^^^^^^
14    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
15    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
16
17 error: any use of this value will cause an error
18   --> $DIR/const-err-multi.rs:6:19
19    |
20 LL | pub const B: i8 = A;
21    | ------------------^-
22    |                   |
23    |                   referenced constant has errors
24    |
25    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
26    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
27
28 error: any use of this value will cause an error
29   --> $DIR/const-err-multi.rs:9:19
30    |
31 LL | pub const C: u8 = A as u8;
32    | ------------------^-------
33    |                   |
34    |                   referenced constant has errors
35    |
36    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
37    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
38
39 error: any use of this value will cause an error
40   --> $DIR/const-err-multi.rs:12:24
41    |
42 LL | pub const D: i8 = 50 - A;
43    | -----------------------^-
44    |                        |
45    |                        referenced constant has errors
46    |
47    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
48    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
49
50 error: aborting due to 4 previous errors
51