fn f(_: &mut isize) {}
fn main() {
let mut x: Box<_> = Box::new(3);
f(x) //~ ERROR mismatched types
}