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