mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			302 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			302 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Multiple custom crate-level attributes, both inert and active.
 | |
| 
 | |
| //@ check-pass
 | |
| //@ aux-crate:test_macros=test-macros.rs
 | |
| 
 | |
| #![feature(custom_inner_attributes)]
 | |
| #![feature(prelude_import)]
 | |
| 
 | |
| #![test_macros::identity_attr]
 | |
| #![rustfmt::skip]
 | |
| #![test_macros::identity_attr]
 | |
| #![rustfmt::skip]
 | |
| 
 | |
| fn main() {}
 | 
