2017-10-26 23:50:54 -05:00
|
|
|
// Test that the macro backtrace facility works
|
|
|
|
// aux-build:ping.rs
|
2020-02-06 04:16:38 -06:00
|
|
|
// revisions: default -Zmacro-backtrace
|
|
|
|
//[-Zmacro-backtrace] compile-flags: -Z macro-backtrace
|
2017-10-26 23:50:54 -05:00
|
|
|
|
|
|
|
#[macro_use] extern crate ping;
|
|
|
|
|
|
|
|
// a local macro
|
|
|
|
macro_rules! pong {
|
2017-12-08 20:35:55 -06:00
|
|
|
() => { syntax error };
|
2017-10-26 23:50:54 -05:00
|
|
|
}
|
2017-12-13 13:27:18 -06:00
|
|
|
//~^^ ERROR expected one of
|
|
|
|
//~| ERROR expected one of
|
|
|
|
//~| ERROR expected one of
|
2017-10-26 23:50:54 -05:00
|
|
|
|
2018-12-26 18:07:00 -06:00
|
|
|
#[allow(non_camel_case_types)]
|
2018-12-16 11:23:27 -06:00
|
|
|
struct syntax;
|
|
|
|
|
2017-10-26 23:50:54 -05:00
|
|
|
fn main() {
|
|
|
|
pong!();
|
|
|
|
ping!();
|
2017-12-08 20:35:55 -06:00
|
|
|
deep!();
|
2017-10-26 23:50:54 -05:00
|
|
|
}
|