Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
#![feature(box_syntax)]
#![allow(dead_code)]
pub fn main() {
let mut x: Box<_> = box 3;
x = x;
assert_eq!(*x, 3);
}