2015-01-03 03:41:40 +00:00
|
|
|
#![feature(trace_macros)]
|
2014-03-18 12:14:08 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|