mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			282 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			282 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ aux-build:make-macro.rs
 | 
						|
//@ proc-macro: meta-macro.rs
 | 
						|
//@ edition:2018
 | 
						|
//@ compile-flags: -Z span-debug
 | 
						|
//@ run-pass
 | 
						|
 | 
						|
#![no_std] // Don't load unnecessary hygiene information from std
 | 
						|
extern crate std;
 | 
						|
 | 
						|
extern crate meta_macro;
 | 
						|
 | 
						|
fn main() {
 | 
						|
    meta_macro::print_def_site!();
 | 
						|
}
 |