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