@@ -11,38 +11,52 @@ note: the lint level is defined here
11
11
|
12
12
LL | #![deny(const_err)]
13
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>
14
16
15
17
error: any use of this value will cause an error
16
- --> $DIR/const-err-early.rs:4 :19
18
+ --> $DIR/const-err-early.rs:5 :19
17
19
|
18
20
LL | pub const B: u8 = 200u8 + 200u8;
19
21
| ------------------^^^^^^^^^^^^^-
20
22
| |
21
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>
22
27
23
28
error: any use of this value will cause an error
24
- --> $DIR/const-err-early.rs:5 :19
29
+ --> $DIR/const-err-early.rs:7 :19
25
30
|
26
31
LL | pub const C: u8 = 200u8 * 4;
27
32
| ------------------^^^^^^^^^-
28
33
| |
29
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>
30
38
31
39
error: any use of this value will cause an error
32
- --> $DIR/const-err-early.rs:6 :19
40
+ --> $DIR/const-err-early.rs:9 :19
33
41
|
34
42
LL | pub const D: u8 = 42u8 - (42u8 + 1);
35
43
| ------------------^^^^^^^^^^^^^^^^^-
36
44
| |
37
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>
38
49
39
50
error: any use of this value will cause an error
40
- --> $DIR/const-err-early.rs:7 :19
51
+ --> $DIR/const-err-early.rs:11 :19
41
52
|
42
53
LL | pub const E: u8 = [5u8][1];
43
54
| ------------------^^^^^^^^-
44
55
| |
45
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>
46
60
47
61
error: aborting due to 5 previous errors
48
62
0 commit comments