blob: 491f18dc4c637ab334a35d2b9e3af27ce049fe96 [file] [log] [blame] [edit]
//@ compile-flags: -Z trace-macros
#![recursion_limit = "5"]
fn main() {
macro_rules! stack {
($overflow:expr) => {
println!(stack!($overflow));
//~^ ERROR recursion limit reached while expanding
//~| ERROR format argument must be a string literal
};
}
stack!("overflow");
}