1 2 3 4 5 6 7 8 9 10 11 12 13
// error-pattern: mismatched types fn f() -> int { be g(); } fn g() -> uint { ret 0u; } fn main() { auto y = f(); }