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