2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2020-10-24 23:21:40 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:14:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_I8: (i8,) =
|
|
|
|
| --------------------
|
|
|
|
LL | (
|
|
|
|
LL | i8::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^ attempt to compute `i8::MAX + 1_i8`, 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-eval-overflow2b.rs:8: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
|
2021-01-30 13:49:22 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:21:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_I16: (i16,) =
|
|
|
|
| ----------------------
|
|
|
|
LL | (
|
|
|
|
LL | i16::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i16::MAX + 1_i16`, which would overflow
|
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
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2021-01-30 13:49:22 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:28:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_I32: (i32,) =
|
|
|
|
| ----------------------
|
|
|
|
LL | (
|
|
|
|
LL | i32::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i32::MAX + 1_i32`, which would overflow
|
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
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2021-01-30 13:49:22 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:35:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_I64: (i64,) =
|
|
|
|
| ----------------------
|
|
|
|
LL | (
|
|
|
|
LL | i64::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i64::MAX + 1_i64`, which would overflow
|
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
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2021-01-30 13:49:22 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:42:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_U8: (u8,) =
|
|
|
|
| --------------------
|
|
|
|
LL | (
|
|
|
|
LL | u8::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^ attempt to compute `u8::MAX + 1_u8`, which would overflow
|
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
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2021-01-30 13:49:22 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:48:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_U16: (u16,) = (
|
|
|
|
| ----------------------
|
|
|
|
LL | u16::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `u16::MAX + 1_u16`, which would overflow
|
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
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2021-01-30 13:49:22 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:54:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_U32: (u32,) = (
|
|
|
|
| ----------------------
|
|
|
|
LL | u32::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `u32::MAX + 1_u32`, which would overflow
|
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
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2021-01-30 13:49:22 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:61:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_U64: (u64,) =
|
|
|
|
| ----------------------
|
|
|
|
LL | (
|
|
|
|
LL | u64::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `u64::MAX + 1_u64`, which would overflow
|
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
|
|
|
|
2018-09-19 15:22:03 +00:00
|
|
|
error: aborting due to 8 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2022-06-04 15:06:04 +00:00
|
|
|
Future incompatibility report: Future breakage diagnostic:
|
|
|
|
error: any use of this value will cause an error
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:14:6
|
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_I8: (i8,) =
|
|
|
|
| --------------------
|
|
|
|
LL | (
|
|
|
|
LL | i8::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^ attempt to compute `i8::MAX + 1_i8`, which would overflow
|
2022-06-04 15:06:04 +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>
|
2022-06-04 15:06:04 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:8:9
|
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
Future breakage diagnostic:
|
|
|
|
error: any use of this value will cause an error
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:21:6
|
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_I16: (i16,) =
|
|
|
|
| ----------------------
|
|
|
|
LL | (
|
|
|
|
LL | i16::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i16::MAX + 1_i16`, which would overflow
|
2022-06-04 15:06:04 +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>
|
2022-06-04 15:06:04 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:8:9
|
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
Future breakage diagnostic:
|
|
|
|
error: any use of this value will cause an error
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:28:6
|
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_I32: (i32,) =
|
|
|
|
| ----------------------
|
|
|
|
LL | (
|
|
|
|
LL | i32::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i32::MAX + 1_i32`, which would overflow
|
2022-06-04 15:06:04 +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>
|
2022-06-04 15:06:04 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:8:9
|
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
Future breakage diagnostic:
|
|
|
|
error: any use of this value will cause an error
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:35:6
|
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_I64: (i64,) =
|
|
|
|
| ----------------------
|
|
|
|
LL | (
|
|
|
|
LL | i64::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i64::MAX + 1_i64`, which would overflow
|
2022-06-04 15:06:04 +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>
|
2022-06-04 15:06:04 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:8:9
|
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
Future breakage diagnostic:
|
|
|
|
error: any use of this value will cause an error
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:42:6
|
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_U8: (u8,) =
|
|
|
|
| --------------------
|
|
|
|
LL | (
|
|
|
|
LL | u8::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^ attempt to compute `u8::MAX + 1_u8`, which would overflow
|
2022-06-04 15:06:04 +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>
|
2022-06-04 15:06:04 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:8:9
|
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
Future breakage diagnostic:
|
|
|
|
error: any use of this value will cause an error
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:48:6
|
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_U16: (u16,) = (
|
|
|
|
| ----------------------
|
|
|
|
LL | u16::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `u16::MAX + 1_u16`, which would overflow
|
2022-06-04 15:06:04 +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>
|
2022-06-04 15:06:04 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:8:9
|
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
Future breakage diagnostic:
|
|
|
|
error: any use of this value will cause an error
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:54:6
|
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_U32: (u32,) = (
|
|
|
|
| ----------------------
|
|
|
|
LL | u32::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `u32::MAX + 1_u32`, which would overflow
|
2022-06-04 15:06:04 +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>
|
2022-06-04 15:06:04 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:8:9
|
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
Future breakage diagnostic:
|
|
|
|
error: any use of this value will cause an error
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:61:6
|
|
|
|
|
|
2022-02-13 15:27:59 +00:00
|
|
|
LL | const VALS_U64: (u64,) =
|
|
|
|
| ----------------------
|
|
|
|
LL | (
|
|
|
|
LL | u64::MAX + 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `u64::MAX + 1_u64`, which would overflow
|
2022-06-04 15:06:04 +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>
|
2022-06-04 15:06:04 +00:00
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:8:9
|
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|