mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 18:50:11 +00:00
12 lines
161 B
Rust
12 lines
161 B
Rust
#![deny(unused_macro_rules)]
|
|
|
|
macro_rules! foo {
|
|
(v) => {};
|
|
(w) => {};
|
|
() => 0; //~ ERROR: macro rhs must be delimited
|
|
}
|
|
|
|
fn main() {
|
|
foo!(v);
|
|
}
|