rust/src/test/run-pass/while-with-break.rs
2013-05-19 08:16:02 -04:00

20 lines
332 B
Rust

// -*- rust -*-
pub fn main() {
let mut i: int = 90;
while i < 100 {
debug!(i);
i = i + 1;
if i == 95 {
let v: ~[int] =
~[1, 2, 3, 4, 5]; // we check that it is freed by break
debug!("breaking");
break;
}
}
assert_eq!(i, 95);
}