2018-08-26 08:19:34 -05:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 19:28:52 -05:00
|
|
|
--> $DIR/const-eval-overflow2c.rs:16:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | / const VALS_I8: (i8,) =
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | (
|
|
|
|
LL | | i8::MIN * 2,
|
2019-03-10 19:28:52 -05:00
|
|
|
| | ^^^^^^^^^^^ attempt to multiply with overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | );
|
2019-03-10 19:28:52 -05:00
|
|
|
| |_______-
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
note: lint level defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/const-eval-overflow2c.rs:8:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2018-08-26 08:19:34 -05:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 19:28:52 -05:00
|
|
|
--> $DIR/const-eval-overflow2c.rs:22:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | / const VALS_I16: (i16,) =
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | (
|
|
|
|
LL | | i16::MIN * 2,
|
2019-03-10 19:28:52 -05:00
|
|
|
| | ^^^^^^^^^^^^ attempt to multiply with overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | );
|
2019-03-10 19:28:52 -05:00
|
|
|
| |_______-
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-26 08:19:34 -05:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 19:28:52 -05:00
|
|
|
--> $DIR/const-eval-overflow2c.rs:28:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | / const VALS_I32: (i32,) =
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | (
|
|
|
|
LL | | i32::MIN * 2,
|
2019-03-10 19:28:52 -05:00
|
|
|
| | ^^^^^^^^^^^^ attempt to multiply with overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | );
|
2019-03-10 19:28:52 -05:00
|
|
|
| |_______-
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-26 08:19:34 -05:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 19:28:52 -05:00
|
|
|
--> $DIR/const-eval-overflow2c.rs:34:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | / const VALS_I64: (i64,) =
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | (
|
|
|
|
LL | | i64::MIN * 2,
|
2019-03-10 19:28:52 -05:00
|
|
|
| | ^^^^^^^^^^^^ attempt to multiply with overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | );
|
2019-03-10 19:28:52 -05:00
|
|
|
| |_______-
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-26 08:19:34 -05:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 19:28:52 -05:00
|
|
|
--> $DIR/const-eval-overflow2c.rs:40:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | / const VALS_U8: (u8,) =
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | (
|
|
|
|
LL | | u8::MAX * 2,
|
2019-03-10 19:28:52 -05:00
|
|
|
| | ^^^^^^^^^^^ attempt to multiply with overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | );
|
2019-03-10 19:28:52 -05:00
|
|
|
| |_______-
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-26 08:19:34 -05:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 19:28:52 -05:00
|
|
|
--> $DIR/const-eval-overflow2c.rs:45:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | / const VALS_U16: (u16,) = (
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | u16::MAX * 2,
|
2019-03-10 19:28:52 -05:00
|
|
|
| | ^^^^^^^^^^^^ attempt to multiply with overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | );
|
2019-03-10 19:28:52 -05:00
|
|
|
| |_______-
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-26 08:19:34 -05:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 19:28:52 -05:00
|
|
|
--> $DIR/const-eval-overflow2c.rs:50:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | / const VALS_U32: (u32,) = (
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | u32::MAX * 2,
|
2019-03-10 19:28:52 -05:00
|
|
|
| | ^^^^^^^^^^^^ attempt to multiply with overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | );
|
2019-03-10 19:28:52 -05:00
|
|
|
| |_______-
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-08-26 08:19:34 -05:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 19:28:52 -05:00
|
|
|
--> $DIR/const-eval-overflow2c.rs:56:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | / const VALS_U64: (u64,) =
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | (
|
|
|
|
LL | | u64::MAX * 2,
|
2019-03-10 19:28:52 -05:00
|
|
|
| | ^^^^^^^^^^^^ attempt to multiply with overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | | );
|
2019-03-10 19:28:52 -05:00
|
|
|
| |_______-
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-09-19 10:22:03 -05:00
|
|
|
error: aborting due to 8 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|