1
Fork 0

Update tests

This commit is contained in:
Vadim Petrochenkov 2019-03-09 15:03:44 +03:00
parent 2060d49c39
commit fa72a81bea
2648 changed files with 6703 additions and 6703 deletions

View file

@ -1,7 +1,7 @@
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2b.rs:14:1
|
LL | / const VALS_I8: (i8,) = //~ ERROR any use of this value will cause an error
LL | / const VALS_I8: (i8,) =
LL | | (
LL | | i8::MAX + 1,
| | ----------- attempt to add with overflow
@ -17,7 +17,7 @@ LL | #![deny(const_err)]
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2b.rs:19:1
|
LL | / const VALS_I16: (i16,) = //~ ERROR any use of this value will cause an error
LL | / const VALS_I16: (i16,) =
LL | | (
LL | | i16::MAX + 1,
| | ------------ attempt to add with overflow
@ -27,7 +27,7 @@ LL | | );
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2b.rs:24:1
|
LL | / const VALS_I32: (i32,) = //~ ERROR any use of this value will cause an error
LL | / const VALS_I32: (i32,) =
LL | | (
LL | | i32::MAX + 1,
| | ------------ attempt to add with overflow
@ -37,7 +37,7 @@ LL | | );
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2b.rs:29:1
|
LL | / const VALS_I64: (i64,) = //~ ERROR any use of this value will cause an error
LL | / const VALS_I64: (i64,) =
LL | | (
LL | | i64::MAX + 1,
| | ------------ attempt to add with overflow
@ -47,7 +47,7 @@ LL | | );
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2b.rs:34:1
|
LL | / const VALS_U8: (u8,) = //~ ERROR any use of this value will cause an error
LL | / const VALS_U8: (u8,) =
LL | | (
LL | | u8::MAX + 1,
| | ----------- attempt to add with overflow
@ -57,7 +57,7 @@ LL | | );
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2b.rs:39:1
|
LL | / const VALS_U16: (u16,) = ( //~ ERROR any use of this value will cause an error
LL | / const VALS_U16: (u16,) = (
LL | | u16::MAX + 1,
| | ------------ attempt to add with overflow
LL | | );
@ -66,7 +66,7 @@ LL | | );
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2b.rs:43:1
|
LL | / const VALS_U32: (u32,) = ( //~ ERROR any use of this value will cause an error
LL | / const VALS_U32: (u32,) = (
LL | | u32::MAX + 1,
| | ------------ attempt to add with overflow
LL | | );
@ -75,7 +75,7 @@ LL | | );
error: any use of this value will cause an error
--> $DIR/const-eval-overflow2b.rs:47:1
|
LL | / const VALS_U64: (u64,) = //~ ERROR any use of this value will cause an error
LL | / const VALS_U64: (u64,) =
LL | | (
LL | | u64::MAX + 1,
| | ------------ attempt to add with overflow