2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-03-05 17:28:08 -06:00
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2013-05-07 23:33:31 -05:00
|
|
|
fn take(x: int) -> int {x}
|
2012-05-19 07:52:01 -05:00
|
|
|
|
|
|
|
fn the_loop() {
|
2014-03-05 16:02:44 -06:00
|
|
|
let mut list = Vec::new();
|
2012-05-19 07:52:01 -05:00
|
|
|
loop {
|
|
|
|
let x = 5;
|
|
|
|
if x > 3 {
|
2013-06-11 21:13:42 -05:00
|
|
|
list.push(take(x));
|
2012-05-19 07:52:01 -05:00
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {}
|