Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// error-pattern: mismatched types
fn mk_int() -> usize { let i: isize = 3; return i; }
fn main() { }