Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
break-and-continue.rs
blob: c01d8a0784556d93b4b6af8c00f8aecf5906ce4a [
file
] [
log
] [
blame
] [
edit
]
// break and continue formatting
#![
feature
(
loop_break_value
)]
fn
main
()
{
'
a
:
loop
{
break
'
a
;
}
let
mut
done
=
false
;
'
b
:
while
!
done
{
done
=
true
;
continue
'
b
;
}
let
x
=
loop
{
break
5
;
};
let
x
=
'
c
:
loop
{
break
'
c
5
;
};
}