rust/src/test/compile-fail/loop-pred-constraints.rs

17 lines
341 B
Rust
Raw Normal View History

// https://github.com/mozilla/rust/issues/2374
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 = 42;
check (even(y));
loop {
print_even(y);
loop { y += 1; break; }
}
2011-07-27 07:48:34 -05:00
}