rust/tests/target/loop.rs

30 lines
665 B
Rust
Raw Normal View History

2015-07-13 21:51:56 +02:00
fn main() {
loop {
return some_val;
}
let x = loop {
do_forever();
};
2015-07-16 16:29:28 +02:00
'label: loop {
2015-07-13 21:51:56 +02:00
// Just comments
}
2015-07-16 16:29:28 +02:00
'a: while loooooooooooooooooooooooooooooooooong_variable_name + another_value >
2015-08-16 06:13:55 +02:00
some_other_value {}
2015-07-16 16:29:28 +02:00
while aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa > bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb {
}
2015-07-19 23:39:48 +02:00
'b: for xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx in some_iter(arg1,
arg2) {
// do smth
}
while let Some(i) = x.find('s') {
x.update();
}
2015-07-13 21:51:56 +02:00
}