mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 20:00:43 +00:00
16 lines
248 B
Rust
16 lines
248 B
Rust
// 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!();
|
|
}
|