rust/src/test/compile-fail/liveness-forgot-ret.rs

9 lines
207 B
Rust
Raw Normal View History

// -*- rust -*-
// error-pattern: not all control paths return a value
2012-08-01 19:30:05 -05:00
fn god_exists(a: int) -> bool { return god_exists(a); }
2012-08-01 19:30:05 -05:00
fn f(a: int) -> int { if god_exists(a) { return 5; }; }
fn main() { f(12); }