mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 11:37:39 +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!();
|
||
|
}
|