mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			226 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			226 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// force-host
 | 
						|
// no-prefer-dynamic
 | 
						|
 | 
						|
#![crate_type = "proc-macro"]
 | 
						|
 | 
						|
extern crate proc_macro;
 | 
						|
use proc_macro::TokenStream;
 | 
						|
 | 
						|
#[proc_macro]
 | 
						|
pub fn recollect(tokens: TokenStream) -> TokenStream {
 | 
						|
    tokens.into_iter().collect()
 | 
						|
}
 |