mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			275 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			275 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // aux-build:make-macro.rs
 | |
| // aux-build: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!();
 | |
| }
 | 
