mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
282 B
Rust
13 lines
282 B
Rust
macro_rules! macro_panic {
|
|
($not_a_function:expr, $some_argument:ident) => {
|
|
$not_a_function($some_argument)
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let mut value_a = 0;
|
|
let mut value_b = 0;
|
|
macro_panic!(value_a, value_b);
|
|
//~^ ERROR expected function, found `{integer}`
|
|
}
|