rust/src/test/run-pass/pred.rs
2011-05-05 11:26:07 -07:00

20 lines
237 B
Rust

// xfail-stage0
// -*- rust -*-
fn f(int a, int b) : lt(a,b) {
}
pred 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);
}