rust/src/test/compile-fail/tstate-while-loop-unsat-constriants.rs

17 lines
352 B
Rust
Raw Normal View History

2012-03-05 18:27:27 -06:00
// error-pattern:unsatisfied precondition constraint (for example, even(y
fn print_even(y: int) : even(y) { log(debug, y); }
pure fn even(y: int) -> bool { true }
fn main() {
let mut y: int = 42;
let mut x: int = 1;
2011-07-27 07:19:39 -05:00
check (even(y));
loop {
2011-07-27 07:19:39 -05:00
print_even(y);
while true { while true { while true { y += x; } } }
}
}