mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
8 lines
220 B
Rust
8 lines
220 B
Rust
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); }
|