mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			214 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			214 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| //@ proc-macro: macro-only-syntax.rs
 | |
| 
 | |
| #![feature(proc_macro_hygiene)]
 | |
| 
 | |
| extern crate macro_only_syntax;
 | |
| 
 | |
| #[macro_only_syntax::expect_unsafe_mod]
 | |
| unsafe mod m {
 | |
|     pub unsafe mod inner;
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
