2017-10-27 04:50:54 +00:00
|
|
|
// Test that the macro backtrace facility works
|
|
|
|
// aux-build:ping.rs
|
2017-11-20 18:03:20 +00:00
|
|
|
// compile-flags: -Z external-macro-backtrace
|
2017-10-27 04:50:54 +00:00
|
|
|
|
|
|
|
#[macro_use] extern crate ping;
|
|
|
|
|
|
|
|
// a local macro
|
|
|
|
macro_rules! pong {
|
2017-12-09 02:35:55 +00:00
|
|
|
() => { syntax error };
|
2017-10-27 04:50:54 +00:00
|
|
|
}
|
2017-12-13 19:27:18 +00:00
|
|
|
//~^^ ERROR expected one of
|
|
|
|
//~| ERROR expected one of
|
|
|
|
//~| ERROR expected one of
|
2017-10-27 04:50:54 +00:00
|
|
|
|
2018-12-16 17:23:27 +00:00
|
|
|
struct syntax;
|
|
|
|
|
2017-10-27 04:50:54 +00:00
|
|
|
fn main() {
|
|
|
|
pong!();
|
|
|
|
ping!();
|
2017-12-09 02:35:55 +00:00
|
|
|
deep!();
|
2017-10-27 04:50:54 +00:00
|
|
|
}
|