Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn foo(x: isize) { println!("{}", x); }
fn main() {
let x: isize;
if 1 > 2 {
println!("whoops");
} else {
x = 10;
}
foo(x); //~ ERROR E0381