Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
pub fn main() {
let (x, y) = (10, 20);
let z = x + y;
assert_eq!(z, 30);
}