blob: b9aeae7ed62b16d88c450670e3c5fda3d52fd8ab [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/diverging-fn-transmute.rs:5:9
|
LL | fn assert_sizeof() -> ! {
| - expected `!` because of return type
LL | unsafe {
LL | ::std::mem::transmute::<f64, [u8; 8]>(panic!())
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `!`, found `[u8; 8]`
|
= note: expected type `!`
found array `[u8; 8]`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0308`.