Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
use std::cell::RefCell;
fn main() {
let x = RefCell::new(0);
if *x.borrow() == 0 {} else {}
}