// Test that the macro backtrace facility works (supporting file)
// a non-local macro
#[macro_export]
macro_rules! ping {
() => {
pong!();
}
macro_rules! deep {
foo!();
macro_rules! foo {
bar!();
macro_rules! bar {
ping!();