Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
fn f() {
let a: Box<_> = Box::new(1);
let b: &isize = &*a;
println!("{}", b);
}
pub fn main() {
f();