8 lines
136 B
Rust
8 lines
136 B
Rust
// Issue 1974
|
|
// Don't double free the condition allocation
|
|
fn main() {
|
|
let s = ~"hej";
|
|
while s != ~"" {
|
|
return;
|
|
}
|
|
} |