17 lines
303 B
Rust
17 lines
303 B
Rust
// error-pattern:Number is odd
|
|
pure fn even(x: uint) -> bool {
|
|
if x < 2u {
|
|
ret false;
|
|
} else if x == 2u { ret true; } else { ret even(x - 2u); }
|
|
}
|
|
|
|
fn foo(x: uint) {
|
|
if check even(x) {
|
|
log(debug, x);
|
|
} else {
|
|
fail "Number is odd";
|
|
}
|
|
}
|
|
|
|
fn main() { foo(3u); }
|