rust/src/test/run-pass/while-prelude-drop.rs

20 lines
300 B
Rust
Raw Normal View History

enum t { a, b(~str), }
2011-07-27 07:19:39 -05:00
fn make(i: int) -> t {
if i > 10 { ret a; }
let mut s = ~"hello";
// Ensure s is non-const.
s += ~"there";
ret b(s);
}
fn main() {
let mut i = 0;
2011-07-27 07:19:39 -05:00
// The auto slot for the result of make(i) should not leak.
2011-07-27 07:19:39 -05:00
while make(i) != a { i += 1; }
}