Fix tests

This commit is contained in:
Esteban Küber 2018-07-15 22:36:05 -07:00
parent 23327597e7
commit f760960088
8 changed files with 0 additions and 32 deletions

View file

@ -1,4 +0,0 @@
error: the type `[usize; 18446744073709551615]` is too big for the current architecture
error: aborting due to previous error

View file

@ -1,4 +0,0 @@
error: the type `[&usize; 17293822569102704640]` is too big for the current architecture
error: aborting due to previous error

View file

@ -1,12 +0,0 @@
error[E0512]: transmute called with types of different sizes
--> $DIR/issue-28625.rs:20:14
|
LL | unsafe { std::mem::transmute(a) } //~ ERROR transmute called with types of different sizes
| ^^^^^^^^^^^^^^^^^^^
|
= note: source type: &ArrayPeano<T> (64 bits)
= note: target type: &[T] (128 bits)
error: aborting due to previous error
For more information about this error, try `rustc --explain E0512`.

View file

@ -1,12 +0,0 @@
error[E0512]: transmute called with types of different sizes
--> $DIR/issue-32377.rs:23:14
|
LL | unsafe { mem::transmute(x) }
| ^^^^^^^^^^^^^^
|
= note: source type: [usize; 2] (128 bits)
= note: target type: Bar<U> (0 bits)
error: aborting due to previous error
For more information about this error, try `rustc --explain E0512`.