rust/src/test/run-pass/while-with-break.rs
Brian Anderson 9a773da681 Remove ancient emacs mode lines from test cases
These are relics that serve no purpose.
2013-10-25 17:41:54 -07:00

19 lines
321 B
Rust

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