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

21 lines
321 B
Rust
Raw Normal View History

#[deriving_eq]
enum t { a, b(~str), }
2011-07-27 07:19:39 -05:00
fn make(i: int) -> t {
2012-08-01 19:30:05 -05:00
if i > 10 { return a; }
let mut s = ~"hello";
// Ensure s is non-const.
s += ~"there";
2012-08-01 19:30:05 -05:00
return 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; }
}