blob: 9416f09c6e3dc2101a20fc877aa857d259650ed1 [file] [log] [blame]
//@ run-pass
// Issue 1974
// Don't double free the condition allocation
pub fn main() {
let s = "hej".to_string();
while s != "".to_string() {
return;
}
}