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

87 lines
2.3 KiB
Plaintext
Raw Normal View History

error: any use of this value will cause an error
--> $DIR/const-eval-overflow2.rs:14:6
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | / const VALS_I8: (i8,) =
2018-08-08 12:28:26 +00:00
LL | | (
LL | | i8::MIN - 1,
| | ^^^^^^^^^^^ attempt to compute `i8::MIN - 1_i8`, which would overflow
2018-08-08 12:28:26 +00:00
LL | | );
| |_______-
2018-08-08 12:28:26 +00:00
|
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-overflow2.rs:8:9
2018-08-08 12:28:26 +00:00
|
LL | #![deny(const_err)]
| ^^^^^^^^^
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2.rs:20:6
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | / const VALS_I16: (i16,) =
2018-08-08 12:28:26 +00:00
LL | | (
LL | | i16::MIN - 1,
| | ^^^^^^^^^^^^ attempt to compute `i16::MIN - 1_i16`, which would overflow
2018-08-08 12:28:26 +00:00
LL | | );
| |_______-
2018-08-08 12:28:26 +00:00
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2.rs:26:6
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | / const VALS_I32: (i32,) =
2018-08-08 12:28:26 +00:00
LL | | (
LL | | i32::MIN - 1,
| | ^^^^^^^^^^^^ attempt to compute `i32::MIN - 1_i32`, which would overflow
2018-08-08 12:28:26 +00:00
LL | | );
| |_______-
2018-08-08 12:28:26 +00:00
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2.rs:32:6
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | / const VALS_I64: (i64,) =
2018-08-08 12:28:26 +00:00
LL | | (
LL | | i64::MIN - 1,
| | ^^^^^^^^^^^^ attempt to compute `i64::MIN - 1_i64`, which would overflow
2018-08-08 12:28:26 +00:00
LL | | );
| |_______-
2018-08-08 12:28:26 +00:00
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2.rs:38:6
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | / const VALS_U8: (u8,) =
2018-08-08 12:28:26 +00:00
LL | | (
LL | | u8::MIN - 1,
| | ^^^^^^^^^^^ attempt to compute `0_u8 - 1_u8`, which would overflow
2018-08-08 12:28:26 +00:00
LL | | );
| |_______-
2018-08-08 12:28:26 +00:00
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2.rs:43:6
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | / const VALS_U16: (u16,) = (
2018-08-08 12:28:26 +00:00
LL | | u16::MIN - 1,
| | ^^^^^^^^^^^^ attempt to compute `0_u16 - 1_u16`, which would overflow
2018-08-08 12:28:26 +00:00
LL | | );
| |_______-
2018-08-08 12:28:26 +00:00
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2.rs:48:6
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | / const VALS_U32: (u32,) = (
2018-08-08 12:28:26 +00:00
LL | | u32::MIN - 1,
| | ^^^^^^^^^^^^ attempt to compute `0_u32 - 1_u32`, which would overflow
2018-08-08 12:28:26 +00:00
LL | | );
| |_______-
2018-08-08 12:28:26 +00:00
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2.rs:54:6
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | / const VALS_U64: (u64,) =
2018-08-08 12:28:26 +00:00
LL | | (
LL | | u64::MIN - 1,
| | ^^^^^^^^^^^^ attempt to compute `0_u64 - 1_u64`, which would overflow
2018-08-08 12:28:26 +00:00
LL | | );
| |_______-
2018-08-08 12:28:26 +00:00
error: aborting due to 8 previous errors
2018-08-08 12:28:26 +00:00