mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			423 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			423 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // force-host
 | |
| // no-prefer-dynamic
 | |
| 
 | |
| #![crate_type = "proc-macro"]
 | |
| 
 | |
| extern crate proc_macro;
 | |
| use proc_macro::*;
 | |
| 
 | |
| #[proc_macro_attribute]
 | |
| #[deprecated(since = "1.0.0", note = "test")]
 | |
| pub fn attr(_: TokenStream, input: TokenStream) -> TokenStream {
 | |
|     input
 | |
| }
 | |
| 
 | |
| #[proc_macro_attribute]
 | |
| #[deprecated(since = "1.0.0", note = "test")]
 | |
| pub fn attr_remove(_: TokenStream, _: TokenStream) -> TokenStream {
 | |
|     TokenStream::new()
 | |
| }
 | 
