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