2016-04-17 12:01:16 -05:00
|
|
|
// rustfmt-control_brace_style: AlwaysNextLine
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
loop
|
|
|
|
{
|
|
|
|
();
|
|
|
|
();
|
|
|
|
}
|
|
|
|
|
2017-01-10 19:34:42 -06:00
|
|
|
'label: loop
|
|
|
|
// loop comment
|
2016-04-17 12:01:16 -05:00
|
|
|
{
|
|
|
|
();
|
|
|
|
}
|
|
|
|
|
|
|
|
cond = true;
|
|
|
|
while cond
|
|
|
|
{
|
|
|
|
();
|
|
|
|
}
|
|
|
|
|
|
|
|
'while_label: while cond
|
|
|
|
{
|
|
|
|
// while comment
|
|
|
|
();
|
|
|
|
}
|
|
|
|
|
|
|
|
for obj in iter
|
|
|
|
{
|
|
|
|
for sub_obj in obj
|
|
|
|
{
|
|
|
|
'nested_while_label: while cond
|
|
|
|
{
|
|
|
|
();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
match some_var
|
2017-08-18 09:20:12 -05:00
|
|
|
{
|
|
|
|
// match comment
|
2016-04-17 12:01:16 -05:00
|
|
|
pattern0 => val0,
|
|
|
|
pattern1 => val1,
|
|
|
|
pattern2 | pattern3 =>
|
|
|
|
{
|
|
|
|
do_stuff();
|
|
|
|
val2
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|