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

19 lines
287 B
Rust
Raw Normal View History

tag t { a; b(str); }
2011-07-27 07:19:39 -05:00
fn make(i: int) -> t {
if i > 10 { ret a; }
let s = "hello";
// Ensure s is non-const.
s += "there";
ret b(s);
}
fn main() {
2011-07-27 07:19:39 -05:00
let i = 0;
// 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; }
}