mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
28 lines
760 B
Rust
28 lines
760 B
Rust
#![deny(unused_macro_rules)]
|
|
// To make sure we are not hitting this
|
|
#![deny(unused_macros)]
|
|
|
|
macro_rules! num {
|
|
(one) => { 1 };
|
|
// Most simple (and common) case
|
|
(two) => { compile_error!("foo"); };
|
|
// Some nested use
|
|
(two_) => { foo(compile_error!("foo")); };
|
|
(three) => { 3 };
|
|
(four) => { 4 }; //~ ERROR: rule of macro
|
|
}
|
|
const _NUM: u8 = num!(one) + num!(three);
|
|
|
|
// compile_error not used as a macro invocation
|
|
macro_rules! num2 {
|
|
(one) => { 1 };
|
|
// Only identifier present
|
|
(two) => { fn compile_error() {} }; //~ ERROR: rule of macro
|
|
// Only identifier and bang present
|
|
(two_) => { compile_error! }; //~ ERROR: rule of macro
|
|
(three) => { 3 };
|
|
}
|
|
const _NUM2: u8 = num2!(one) + num2!(three);
|
|
|
|
fn main() {}
|