rust/src/test/ui/macro_backtrace/main.rs

22 lines
368 B
Rust
Raw Normal View History

2017-10-26 23:50:54 -05:00
// Test that the macro backtrace facility works
// aux-build:ping.rs
2017-11-20 12:03:20 -06:00
// compile-flags: -Z external-macro-backtrace
2017-10-26 23:50:54 -05:00
#[macro_use] extern crate ping;
// a local macro
macro_rules! pong {
() => { syntax error };
2017-10-26 23:50:54 -05:00
}
//~^^ ERROR expected one of
//~| ERROR expected one of
//~| ERROR expected one of
2017-10-26 23:50:54 -05:00
struct syntax;
2017-10-26 23:50:54 -05:00
fn main() {
pong!();
ping!();
deep!();
2017-10-26 23:50:54 -05:00
}