mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			248 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			248 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(staged_api)]
 | |
| #![stable(feature = "rust1", since = "1.0.0")]
 | |
| 
 | |
| /// docs for my_macro
 | |
| #[unstable(feature = "macro_test", issue = "none")]
 | |
| #[deprecated(since = "1.2.3", note = "text")]
 | |
| #[macro_export]
 | |
| macro_rules! my_macro {
 | |
|     () => {};
 | |
| }
 | 
