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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

104 lines
4.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 = -i8::MIN;
2022-02-13 15:27:59 +00:00
| --------------- ^^^^^^^^ attempt to negate `i8::MIN`, which would overflow
2018-08-08 12:28:26 +00:00
|
2022-09-18 15:55:36 +00:00
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
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
2021-01-30 13:49:22 +00:00
--> $DIR/const-err-multi.rs:6:19
2018-08-08 12:28:26 +00:00
|
LL | pub const B: i8 = A;
2022-02-13 15:27:59 +00:00
| --------------- ^ referenced constant has errors
2021-01-30 13:49:22 +00:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2018-08-08 12:28:26 +00:00
error: any use of this value will cause an error
2021-01-30 13:49:22 +00:00
--> $DIR/const-err-multi.rs:9:19
2018-08-08 12:28:26 +00:00
|
LL | pub const C: u8 = A as u8;
2022-02-13 15:27:59 +00:00
| --------------- ^ referenced constant has errors
2021-01-30 13:49:22 +00:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2018-08-08 12:28:26 +00:00
error: any use of this value will cause an error
2021-01-30 13:49:22 +00:00
--> $DIR/const-err-multi.rs:12:24
2018-08-08 12:28:26 +00:00
|
LL | pub const D: i8 = 50 - A;
2022-02-13 15:27:59 +00:00
| --------------- ^ referenced constant has errors
2021-01-30 13:49:22 +00:00
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
2018-08-08 12:28:26 +00:00
error: aborting due to 4 previous errors
2018-08-08 12:28:26 +00:00
Future incompatibility report: Future breakage diagnostic:
error: any use of this value will cause an error
--> $DIR/const-err-multi.rs:3:19
|
LL | pub const A: i8 = -i8::MIN;
2022-02-13 15:27:59 +00:00
| --------------- ^^^^^^^^ attempt to negate `i8::MIN`, which would overflow
|
2022-09-18 15:55:36 +00:00
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
note: the lint level is defined here
--> $DIR/const-err-multi.rs:1:9
|
LL | #![deny(const_err)]
| ^^^^^^^^^
Future breakage diagnostic:
error: any use of this value will cause an error
--> $DIR/const-err-multi.rs:6:19
|
LL | pub const B: i8 = A;
2022-02-13 15:27:59 +00:00
| --------------- ^ referenced constant has errors
|
2022-09-18 15:55:36 +00:00
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
note: the lint level is defined here
--> $DIR/const-err-multi.rs:1:9
|
LL | #![deny(const_err)]
| ^^^^^^^^^
Future breakage diagnostic:
error: any use of this value will cause an error
--> $DIR/const-err-multi.rs:9:19
|
LL | pub const C: u8 = A as u8;
2022-02-13 15:27:59 +00:00
| --------------- ^ referenced constant has errors
|
2022-09-18 15:55:36 +00:00
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
note: the lint level is defined here
--> $DIR/const-err-multi.rs:1:9
|
LL | #![deny(const_err)]
| ^^^^^^^^^
Future breakage diagnostic:
error: any use of this value will cause an error
--> $DIR/const-err-multi.rs:12:24
|
LL | pub const D: i8 = 50 - A;
2022-02-13 15:27:59 +00:00
| --------------- ^ referenced constant has errors
|
2022-09-18 15:55:36 +00:00
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
note: the lint level is defined here
--> $DIR/const-err-multi.rs:1:9
|
LL | #![deny(const_err)]
| ^^^^^^^^^