Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn main() {
let y = {
let mut z = 0;
&mut z
};
//~^^ ERROR `z` does not live long enough [E0597]
println!("{}", y);
}