blob: b23fd74c4fd16f92810fe59082cc3228224c0837 [file] [edit]
//! Regression test for <https://github.com/rust-lang/rust/issues/26237>.
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}`
}