2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(unused_imports)]
|
2018-05-19 12:31:06 -05:00
|
|
|
// 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 `()`
|
|
|
|
}
|