error[E0308]: mismatched types --> $DIR/issue-84976.rs:15:16 | LL | length = { foo(&length) }; | ^^^^^^^^^^^^ expected `u32`, found `i32` error[E0308]: mismatched types --> $DIR/issue-84976.rs:17:14 | LL | length = foo(&length); | ^^^^^^^^^^^^ expected `u32`, found `i32` error[E0308]: mismatched types --> $DIR/issue-84976.rs:21:22 | LL | float_length = { bar(&float_length) }; | ^^^^^^^^^^^^^^^^^^ expected `f32`, found `f64` error[E0308]: mismatched types --> $DIR/issue-84976.rs:23:20 | LL | float_length = bar(&float_length); | ^^^^^^^^^^^^^^^^^^ expected `f32`, found `f64` error: aborting due to 4 previous errors For more information about this error, try `rustc --explain E0308`.