2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2012-03-13 19:24:39 -05:00
|
|
|
// Issue 1974
|
|
|
|
// Don't double free the condition allocation
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2014-05-25 05:10:11 -05:00
|
|
|
let s = "hej".to_string();
|
|
|
|
while s != "".to_string() {
|
2012-08-01 19:30:05 -05:00
|
|
|
return;
|
2012-03-13 19:24:39 -05:00
|
|
|
}
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|