Sign in
android
/
toolchain
/
rustc
/
54272acac043c1dedfb7db7420545b31ec1ac51f
/
.
/
src
/
test
/
ui
/
hygiene
/
hygienic-label-1.rs
blob: 66361eec21a52b1d8b4bca007d3dcd4efe57b557 [
file
]
macro_rules
!
foo
{
()
=>
{
break
'x; } //~ ERROR use of undeclared label `'
x
`
}
pub
fn
main
()
{
'
x
:
loop
{
foo
!()
}
}