blob: d009acb02adb1693152e3d7e99e49083d967b456 [file] [log] [blame] [edit]
// Test that the macro backtrace facility works (supporting macro-backtrace-complex.rs)
// a non-local macro
#[macro_export]
macro_rules! ping {
() => {
pong!();
};
}
#[macro_export]
macro_rules! deep {
() => {
foo!();
};
}
#[macro_export]
macro_rules! foo {
() => {
bar!();
};
}
#[macro_export]
macro_rules! bar {
() => {
ping!();
};
}