rust/tests/ui/macros/trace_macros-format.rs

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

19 lines
642 B
Rust
Raw Normal View History

2015-01-03 11:41:40 +08:00
#![feature(trace_macros)]
fn main() {
trace_macros!(); //~ ERROR trace_macros! accepts only `true` or `false`
trace_macros!(1); //~ ERROR trace_macros! accepts only `true` or `false`
trace_macros!(ident); //~ ERROR trace_macros! accepts only `true` or `false`
trace_macros!(for); //~ ERROR trace_macros! accepts only `true` or `false`
trace_macros!(true,); //~ ERROR trace_macros! accepts only `true` or `false`
trace_macros!(false 1); //~ ERROR trace_macros! accepts only `true` or `false`
// should be fine:
macro_rules! expando {
($x: ident) => { trace_macros!($x) }
}
expando!(true);
}