]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-err-early.stderr
Do not suggest `let_else` if no bindings would be introduced
[rust.git] / src / test / ui / consts / const-err-early.stderr
1 error: any use of this value will cause an error
2   --> $DIR/const-err-early.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-early.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-early.rs:5:19
19    |
20 LL | pub const B: u8 = 200u8 + 200u8;
21    | ------------------^^^^^^^^^^^^^-
22    |                   |
23    |                   attempt to compute `200_u8 + 200_u8`, which would overflow
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-early.rs:7:19
30    |
31 LL | pub const C: u8 = 200u8 * 4;
32    | ------------------^^^^^^^^^-
33    |                   |
34    |                   attempt to compute `200_u8 * 4_u8`, which would overflow
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-early.rs:9:19
41    |
42 LL | pub const D: u8 = 42u8 - (42u8 + 1);
43    | ------------------^^^^^^^^^^^^^^^^^-
44    |                   |
45    |                   attempt to compute `42_u8 - 43_u8`, which would overflow
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: any use of this value will cause an error
51   --> $DIR/const-err-early.rs:11:19
52    |
53 LL | pub const E: u8 = [5u8][1];
54    | ------------------^^^^^^^^-
55    |                   |
56    |                   index out of bounds: the length is 1 but the index is 1
57    |
58    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
59    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
60
61 error: aborting due to 5 previous errors
62