2017-05-29 23:22:41 +00:00
|
|
|
error[E0512]: transmute called with types of different sizes
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/main.rs:16:5
|
2017-05-29 23:22:41 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | transmute(x) //~ ERROR transmute called with types of different sizes
|
2017-05-29 23:22:41 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: source type: <C as TypeConstructor<'a>>::T (size can vary because of <C as TypeConstructor>::T)
|
|
|
|
= note: target type: <C as TypeConstructor<'b>>::T (size can vary because of <C as TypeConstructor>::T)
|
|
|
|
|
|
|
|
error[E0512]: transmute called with types of different sizes
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/main.rs:20:17
|
2017-05-29 23:22:41 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let x: u8 = transmute(10u16); //~ ERROR transmute called with types of different sizes
|
2017-05-29 23:22:41 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: source type: u16 (16 bits)
|
|
|
|
= note: target type: u8 (8 bits)
|
|
|
|
|
|
|
|
error[E0512]: transmute called with types of different sizes
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/main.rs:24:17
|
2017-05-29 23:22:41 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let x: u8 = transmute("test"); //~ ERROR transmute called with types of different sizes
|
2017-05-29 23:22:41 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2017-07-06 05:54:58 +00:00
|
|
|
= note: source type: &str ($STR bits)
|
2017-05-29 23:22:41 +00:00
|
|
|
= note: target type: u8 (8 bits)
|
|
|
|
|
|
|
|
error[E0512]: transmute called with types of different sizes
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/main.rs:29:18
|
2017-05-29 23:22:41 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let x: Foo = transmute(10); //~ ERROR transmute called with types of different sizes
|
2017-05-29 23:22:41 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: source type: i32 (32 bits)
|
|
|
|
= note: target type: Foo (0 bits)
|
|
|
|
|
2017-07-02 13:09:09 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2017-05-29 23:22:41 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0512`.
|