2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2018-08-08 12:28:26 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:24:1
|
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
LL | / const VALS_I8: (i8,) = //~ ERROR any use of this value will cause an error
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | | (
|
|
|
|
LL | | i8::MAX + 1,
|
|
|
|
| | ----------- attempt to add with overflow
|
|
|
|
LL | | );
|
|
|
|
| |_______^
|
|
|
|
|
|
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/const-eval-overflow2b.rs:18:9
|
|
|
|
|
|
|
|
|
LL | #![deny(const_err)]
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2018-08-31 08:40:14 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:29:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
LL | / const VALS_I16: (i16,) = //~ ERROR any use of this value will cause an error
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | | (
|
|
|
|
LL | | i16::MAX + 1,
|
|
|
|
| | ------------ attempt to add with overflow
|
|
|
|
LL | | );
|
|
|
|
| |_______^
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2018-08-31 08:40:14 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:34:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
LL | / const VALS_I32: (i32,) = //~ ERROR any use of this value will cause an error
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | | (
|
|
|
|
LL | | i32::MAX + 1,
|
|
|
|
| | ------------ attempt to add with overflow
|
|
|
|
LL | | );
|
|
|
|
| |_______^
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2018-08-31 08:40:14 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:39:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
LL | / const VALS_I64: (i64,) = //~ ERROR any use of this value will cause an error
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | | (
|
|
|
|
LL | | i64::MAX + 1,
|
|
|
|
| | ------------ attempt to add with overflow
|
|
|
|
LL | | );
|
|
|
|
| |_______^
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2018-08-31 08:40:14 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:44:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
LL | / const VALS_U8: (u8,) = //~ ERROR any use of this value will cause an error
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | | (
|
|
|
|
LL | | u8::MAX + 1,
|
|
|
|
| | ----------- attempt to add with overflow
|
|
|
|
LL | | );
|
|
|
|
| |_______^
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2018-08-31 08:40:14 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:49:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
LL | / const VALS_U16: (u16,) = ( //~ ERROR any use of this value will cause an error
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | | u16::MAX + 1,
|
|
|
|
| | ------------ attempt to add with overflow
|
|
|
|
LL | | );
|
|
|
|
| |_______^
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2018-08-31 08:40:14 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:53:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
LL | / const VALS_U32: (u32,) = ( //~ ERROR any use of this value will cause an error
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | | u32::MAX + 1,
|
|
|
|
| | ------------ attempt to add with overflow
|
|
|
|
LL | | );
|
|
|
|
| |_______^
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
error: any use of this value will cause an error
|
2018-08-31 08:40:14 +00:00
|
|
|
--> $DIR/const-eval-overflow2b.rs:57:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2018-08-26 13:19:34 +00:00
|
|
|
LL | / const VALS_U64: (u64,) = //~ ERROR any use of this value will cause an error
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | | (
|
|
|
|
LL | | u64::MAX + 1,
|
|
|
|
| | ------------ attempt to add with overflow
|
|
|
|
LL | | );
|
|
|
|
| |_______^
|
|
|
|
|
2018-09-19 15:22:03 +00:00
|
|
|
error: aborting due to 8 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|