mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
16 lines
249 B
Rust
16 lines
249 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!();
|
|
}
|