mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			227 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			227 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// 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 `()`
 | 
						|
}
 |