Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// error-pattern: unreachable statement
#![deny(unreachable_code)]
fn main() {
return;
println!("Paul is dead");
}