]> git.lizzy.rs Git - rust.git/blob - tests/ui/diverging-fn-tail-35849.stderr
Rollup merge of #103702 - WaffleLapkin:lift-sized-bounds-from-pointer-methods-where...
[rust.git] / tests / ui / diverging-fn-tail-35849.stderr
1 error[E0308]: mismatched types
2   --> $DIR/diverging-fn-tail-35849.rs:3:9
3    |
4 LL | fn assert_sizeof() -> ! {
5    |                       - expected `!` because of return type
6 LL |     unsafe {
7 LL |         ::std::mem::transmute::<f64, [u8; 8]>(panic!())
8    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `!`, found array `[u8; 8]`
9    |
10    = note: expected type `!`
11              found array `[u8; 8]`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0308`.