summaryrefslogtreecommitdiffstats
path: root/tests/ui/diverging-fn-tail-35849.stderr
blob: f5b5a4cccad2c0196705264176826c331c0d06a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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`.