mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 09:22:35 +00:00
15 lines
287 B
Rust
15 lines
287 B
Rust
macro_rules! test {
|
|
($a, $b) => {
|
|
//~^ ERROR missing fragment
|
|
//~| ERROR missing fragment
|
|
//~| ERROR missing fragment
|
|
//~| WARN this was previously accepted
|
|
//~| WARN this was previously accepted
|
|
()
|
|
};
|
|
}
|
|
|
|
fn main() {
|
|
test!()
|
|
}
|