2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2019-03-11 00:28:52 +00:00
|
|
|
--> $DIR/const-err-multi.rs:3:19
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | pub const A: i8 = -std::i8::MIN;
|
2019-03-11 00:28:52 +00:00
|
|
|
| ------------------^^^^^^^^^^^^^-
|
2018-08-08 12:28:26 +00:00
|
|
|
| |
|
2020-09-15 19:34:50 +00:00
|
|
|
| attempt to negate `i8::MIN`, which would overflow
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/const-err-multi.rs:1:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2020-08-11 12:54:02 +00:00
|
|
|
--> $DIR/const-err-multi.rs:5:19
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | pub const B: i8 = A;
|
2020-08-11 12:54:02 +00:00
|
|
|
| ------------------^-
|
|
|
|
| |
|
|
|
|
| referenced constant has errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2020-08-11 12:54:02 +00:00
|
|
|
--> $DIR/const-err-multi.rs:7:19
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | pub const C: u8 = A as u8;
|
2020-08-11 12:54:02 +00:00
|
|
|
| ------------------^-------
|
|
|
|
| |
|
|
|
|
| referenced constant has errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2020-08-11 12:54:02 +00:00
|
|
|
--> $DIR/const-err-multi.rs:9:24
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | pub const D: i8 = 50 - A;
|
2020-08-11 12:54:02 +00:00
|
|
|
| -----------------------^-
|
|
|
|
| |
|
|
|
|
| referenced constant has errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2018-09-19 15:22:03 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|