mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			194 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			194 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| 
 | |
| #![allow(path_statements)]
 | |
| #![allow(dead_code)]
 | |
| //@ aux-build:derive-same-struct.rs
 | |
| 
 | |
| #[macro_use]
 | |
| extern crate derive_same_struct;
 | |
| 
 | |
| #[derive(AToB)]
 | |
| struct A;
 | |
| 
 | |
| fn main() {
 | |
|     C;
 | |
| }
 | 
