rust/src/test/ui/transmute/main.stderr

40 lines
1.4 KiB
Plaintext
Raw Normal View History

error[E0512]: transmute called with types of different sizes
2018-12-25 15:56:47 +00:00
--> $DIR/main.rs:16:5
|
2018-02-23 00:42:32 +00:00
LL | transmute(x) //~ ERROR transmute called with types of different sizes
| ^^^^^^^^^
|
= 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
|
2018-02-23 00:42:32 +00:00
LL | let x: u8 = transmute(10u16); //~ ERROR transmute called with types of different sizes
| ^^^^^^^^^
|
= 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
|
2018-02-23 00:42:32 +00:00
LL | let x: u8 = transmute("test"); //~ ERROR transmute called with types of different sizes
| ^^^^^^^^^
|
= note: source type: &str ($STR 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:29:18
|
2018-02-23 00:42:32 +00:00
LL | let x: Foo = transmute(10); //~ ERROR transmute called with types of different sizes
| ^^^^^^^^^
|
= note: source type: i32 (32 bits)
= note: target type: Foo (0 bits)
error: aborting due to 4 previous errors
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0512`.