rust/tests/ui/macro_backtrace/main.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
449 B
Rust
Raw Normal View History

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