rust/tests/ui/liveness/liveness-forgot-ret.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
220 B
Rust
Raw Normal View History

fn god_exists(a: isize) -> bool { return god_exists(a); }
//~^ WARN function cannot return without recursing
fn f(a: isize) -> isize { if god_exists(a) { return 5; }; }
//~^ ERROR mismatched types
fn main() { f(12); }