Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
macros
/
issue-61053-duplicate-binder.rs
blob: 34aa571c11ee664bbb3c596e9de0d4a60ee73903 [
file
] [
log
] [
blame
]
#![
deny
(
meta_variable_misuse
)]
macro_rules
!
foo
{
()
=>
{};
(
error
)
=>
{
macro_rules
!
bar
{
(
$x
:
tt $x
:
tt
)
=>
{
$x
};
//~ ERROR duplicate matcher binding
}
};
}
fn
main
()
{
foo
!();
}