Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
hygiene
/
hygienic-label-3.rs
blob: ab0559e1b6a8379adcbf912800bbe78fcf04ac32 [
file
] [
log
] [
blame
] [
edit
]
macro_rules
!
foo
{
()
=>
{
break
'x; } //~ ERROR use of undeclared label `'
x
`
}
pub
fn
main
()
{
'
x
:
for
_ in
0.
.
1
{
foo
!();
};
}