mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
62ba3e70a1
The previous output was unintuitive to users.
16 lines
521 B
Plaintext
16 lines
521 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/diverging-fn-tail-35849.rs:3: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 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|