2018-08-26 15:19:34 +02:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 17:28:52 -07:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:16:6
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | / const VALS_I8: (i8,) =
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | (
|
|
|
|
LL | | i8::MAX + 1,
|
2020-06-19 18:57:15 +02:00
|
|
|
| | ^^^^^^^^^^^ attempt to compute `i8::MAX + 1_i8` which would overflow
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | );
|
2019-03-10 17:28:52 -07:00
|
|
|
| |_______-
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:8:9
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2018-08-26 15:19:34 +02:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 17:28:52 -07:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:22:6
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | / const VALS_I16: (i16,) =
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | (
|
|
|
|
LL | | i16::MAX + 1,
|
2020-06-19 18:57:15 +02:00
|
|
|
| | ^^^^^^^^^^^^ attempt to compute `i16::MAX + 1_i16` which would overflow
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | );
|
2019-03-10 17:28:52 -07:00
|
|
|
| |_______-
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2018-08-26 15:19:34 +02:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 17:28:52 -07:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:28:6
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | / const VALS_I32: (i32,) =
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | (
|
|
|
|
LL | | i32::MAX + 1,
|
2020-06-19 18:57:15 +02:00
|
|
|
| | ^^^^^^^^^^^^ attempt to compute `i32::MAX + 1_i32` which would overflow
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | );
|
2019-03-10 17:28:52 -07:00
|
|
|
| |_______-
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2018-08-26 15:19:34 +02:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 17:28:52 -07:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:34:6
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | / const VALS_I64: (i64,) =
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | (
|
|
|
|
LL | | i64::MAX + 1,
|
2020-06-19 18:57:15 +02:00
|
|
|
| | ^^^^^^^^^^^^ attempt to compute `i64::MAX + 1_i64` which would overflow
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | );
|
2019-03-10 17:28:52 -07:00
|
|
|
| |_______-
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2018-08-26 15:19:34 +02:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 17:28:52 -07:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:40:6
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | / const VALS_U8: (u8,) =
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | (
|
|
|
|
LL | | u8::MAX + 1,
|
2020-06-19 18:57:15 +02:00
|
|
|
| | ^^^^^^^^^^^ attempt to compute `u8::MAX + 1_u8` which would overflow
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | );
|
2019-03-10 17:28:52 -07:00
|
|
|
| |_______-
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2018-08-26 15:19:34 +02:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 17:28:52 -07:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:45:6
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | / const VALS_U16: (u16,) = (
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | u16::MAX + 1,
|
2020-06-19 18:57:15 +02:00
|
|
|
| | ^^^^^^^^^^^^ attempt to compute `u16::MAX + 1_u16` which would overflow
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | );
|
2019-03-10 17:28:52 -07:00
|
|
|
| |_______-
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2018-08-26 15:19:34 +02:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 17:28:52 -07:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:50:6
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | / const VALS_U32: (u32,) = (
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | u32::MAX + 1,
|
2020-06-19 18:57:15 +02:00
|
|
|
| | ^^^^^^^^^^^^ attempt to compute `u32::MAX + 1_u32` which would overflow
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | );
|
2019-03-10 17:28:52 -07:00
|
|
|
| |_______-
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2018-08-26 15:19:34 +02:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 17:28:52 -07:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:56:6
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | / const VALS_U64: (u64,) =
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | (
|
|
|
|
LL | | u64::MAX + 1,
|
2020-06-19 18:57:15 +02:00
|
|
|
| | ^^^^^^^^^^^^ attempt to compute `u64::MAX + 1_u64` which would overflow
|
2018-08-08 14:28:26 +02:00
|
|
|
LL | | );
|
2019-03-10 17:28:52 -07:00
|
|
|
| |_______-
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2018-09-19 17:22:03 +02:00
|
|
|
error: aborting due to 8 previous errors
|
2018-08-08 14:28:26 +02:00
|
|
|
|