1 2 3 4 5 6 7
// error-pattern: mismatched types fn f() -> isize { return g(); } fn g() -> usize { return 0; } fn main() { let y = f(); }