mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			389 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			389 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
extern crate proc_macro;
 | 
						|
 | 
						|
use proc_macro::TokenStream;
 | 
						|
 | 
						|
#[proc_macro_derive(AddImpl)]
 | 
						|
// Unnecessary qualification `bar::foo`
 | 
						|
// https://github.com/rust-lang/rust/issues/71898
 | 
						|
pub fn derive(input: TokenStream) -> TokenStream {
 | 
						|
    "impl B {
 | 
						|
            fn foo(&self) { use bar::foo; bar::foo() }
 | 
						|
        }
 | 
						|
 | 
						|
        fn foo() {}
 | 
						|
 | 
						|
        mod bar { pub fn foo() {} }
 | 
						|
    ".parse().unwrap()
 | 
						|
}
 |