Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn f(_: &mut isize) {}
fn main() {
let mut x: Box<_> = Box::new(3);
f(x) //~ ERROR mismatched types
}