mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			254 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			254 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ force-host
 | |
| //@ no-prefer-dynamic
 | |
| //@ compile-flags: --crate-type proc-macro
 | |
| 
 | |
| #![crate_type = "proc-macro"]
 | |
| 
 | |
| extern crate proc_macro;
 | |
| 
 | |
| use proc_macro::TokenStream;
 | |
| 
 | |
| #[proc_macro_derive(Foo)]
 | |
| pub fn foo(input: TokenStream) -> TokenStream {
 | |
|     input
 | |
| }
 | 
