mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			159 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			159 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| // aux-build:add-impl.rs
 | |
| 
 | |
| #[macro_use]
 | |
| extern crate add_impl;
 | |
| 
 | |
| #[derive(AddImpl)]
 | |
| struct B;
 | |
| 
 | |
| fn main() {
 | |
|     B.foo();
 | |
|     foo();
 | |
|     bar::foo();
 | |
| }
 | 
