rust/src/test/ui/consts/const-eval/const-eval-overflow2c.stderr

87 lines
2.5 KiB
Plaintext
Raw Normal View History

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