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

19 lines
219 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
fn f(int a, int b) : lt(a,b) {
}
fn lt(int a, int b) -> bool {
ret a < b;
}
fn main() {
let int a = 10;
let int b = 23;
let int c = 77;
check lt(a,b);
check lt(a,c);
f(a,b);
f(a,c);
}