Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
// pretty-expanded FIXME #23616
#![feature(trace_macros, log_syntax)]
// make sure these macros can be used as in the various places that
// macros can occur.
// items
trace_macros!(false);
log_syntax!();
fn main() {
// statements
// expressions
(trace_macros!(false),
log_syntax!());
}