Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
pub fn main() {
let mut i: Box<_> = Box::new(0);
*i = 1;
assert_eq!(*i, 1);
}