os-rust/tests/ui/for-loop-while/while-prelude-drop.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
433 B
Rust
Raw Normal View History

// run-pass
#![allow(non_camel_case_types)]
use std::string::String;
#[derive(PartialEq)]
enum t { a, b(String), }
fn make(i: isize) -> t {
if i > 10 { return t::a; }
let mut s = String::from("hello");
// Ensure s is non-const.
s.push_str("there");
return t::b(s);
}
pub fn main() {
let mut i = 0;
2011-07-27 14:19:39 +02:00
// The auto slot for the result of make(i) should not leak.
while make(i) != t::a { i += 1; }
}