rust/src/test/ui/consts/const-err-multi.stderr

41 lines
1.1 KiB
Plaintext
Raw Normal View History

error: any use of this value will cause an error
--> $DIR/const-err-multi.rs:3:19
2018-08-08 12:28:26 +00:00
|
LL | pub const A: i8 = -std::i8::MIN;
| ------------------^^^^^^^^^^^^^-
2018-08-08 12:28:26 +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)]
| ^^^^^^^^^
error: any use of this value will cause an error
--> $DIR/const-err-multi.rs:5:19
2018-08-08 12:28:26 +00:00
|
LL | pub const B: i8 = A;
| ------------------^-
| |
| referenced constant has errors
2018-08-08 12:28:26 +00:00
error: any use of this value will cause an error
--> $DIR/const-err-multi.rs:7:19
2018-08-08 12:28:26 +00:00
|
LL | pub const C: u8 = A as u8;
| ------------------^-------
| |
| referenced constant has errors
2018-08-08 12:28:26 +00:00
error: any use of this value will cause an error
--> $DIR/const-err-multi.rs:9:24
2018-08-08 12:28:26 +00:00
|
LL | pub const D: i8 = 50 - A;
| -----------------------^-
| |
| referenced constant has errors
2018-08-08 12:28:26 +00:00
error: aborting due to 4 previous errors
2018-08-08 12:28:26 +00:00