2018-08-30 07:18:55 -05:00
|
|
|
//@ run-pass
|
2015-03-22 15:13:15 -05:00
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
|
2013-02-17 16:36:43 -06:00
|
|
|
pub fn main () {
|
2014-05-25 05:10:11 -05:00
|
|
|
let mut line = "".to_string();
|
2015-01-25 15:05:03 -06:00
|
|
|
let mut i = 0;
|
2014-05-25 05:10:11 -05:00
|
|
|
while line != "exit".to_string() {
|
|
|
|
line = if i == 9 { "exit".to_string() } else { "notexit".to_string() };
|
2011-12-04 10:33:25 -06:00
|
|
|
i += 1;
|
2012-05-10 16:06:19 -05:00
|
|
|
}
|
2011-12-04 10:33:25 -06:00
|
|
|
}
|