mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			398 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			398 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
struct CantCopyThis;
 | 
						|
 | 
						|
struct IWantToCopyThis {
 | 
						|
    but_i_cant: CantCopyThis,
 | 
						|
}
 | 
						|
 | 
						|
impl Copy for IWantToCopyThis {}
 | 
						|
//~^ ERROR the trait `Copy` cannot be implemented for this type
 | 
						|
 | 
						|
enum CantCopyThisEither {
 | 
						|
    A,
 | 
						|
    B,
 | 
						|
}
 | 
						|
 | 
						|
enum IWantToCopyThisToo {
 | 
						|
    ButICant(CantCopyThisEither),
 | 
						|
}
 | 
						|
 | 
						|
impl Copy for IWantToCopyThisToo {}
 | 
						|
//~^ ERROR the trait `Copy` cannot be implemented for this type
 | 
						|
 | 
						|
fn main() {}
 |