rust/src/test/run-pass/pred-check.rs

5 lines
93 B
Rust
Raw Normal View History

2011-05-04 13:32:06 -05:00
// -*- rust -*-
2011-07-27 07:19:39 -05:00
pred f(q: int) -> bool { ret true; }
2011-05-04 13:32:06 -05:00
fn main() { let x = 0; check (f(x)); }