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