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

5 lines
93 B
Rust
Raw Normal View History

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