Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
macro-missing-fragment-deduplication.rs
blob: b77c51e055bff7327c75835b5727b770b25e48d9 [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: -Zdeduplicate-diagnostics=yes
macro_rules
!
m
{
(
$name
)
=>
{}
//~^ ERROR missing fragment
//~| ERROR missing fragment
//~| WARN this was previously accepted
}
fn
main
()
{
m
!();
m
!();
m
!();
m
!();
}