Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
#![allow(unused_imports)]
// aux-build:use-macro-self.rs
#[macro_use]
extern crate use_macro_self;
use use_macro_self::foobarius::{self};
fn main() {
let _: () = foobarius!(); // OK, the macro returns `()`
}