mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
340 B
Rust
15 lines
340 B
Rust
//@ compile-flags: -Z trace-macros
|
|
|
|
#![recursion_limit = "5"]
|
|
|
|
fn main() {
|
|
macro_rules! stack {
|
|
($overflow:expr) => {
|
|
print!(stack!($overflow));
|
|
//~^ ERROR recursion limit reached while expanding
|
|
//~| ERROR format argument must be a string literal
|
|
};
|
|
}
|
|
|
|
stack!("overflow");
|
|
}
|