rust/src/test/compile-fail/pred-swap.rs

17 lines
308 B
Rust
Raw Normal View History

// -*- rust -*-
// error-pattern: Unsatisfied precondition constraint (for example, lt(a, b)
fn f(a: int, b: int) : lt(a, b) { }
pure fn lt(a: int, b: int) -> bool { ret a < b; }
fn main() {
2011-07-27 14:19:39 +02:00
let a: int = 10;
let b: int = 23;
let c: int = 77;
check (lt(a, b));
b <-> a;
f(a, b);
}