mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			370 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			370 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// revisions: mirunsafeck thirunsafeck
 | 
						|
// [thirunsafeck]compile-flags: -Z thir-unsafeck
 | 
						|
 | 
						|
use std::rc::Rc;
 | 
						|
 | 
						|
union U<T: Copy> {
 | 
						|
    a: T
 | 
						|
}
 | 
						|
 | 
						|
fn main() {
 | 
						|
    let u = U { a: Rc::new(0u32) };
 | 
						|
    //~^ ERROR  the trait bound `Rc<u32>: Copy` is not satisfied
 | 
						|
    let u = U::<Rc<u32>> { a: Default::default() };
 | 
						|
    //~^ ERROR  the trait bound `Rc<u32>: Copy` is not satisfied
 | 
						|
}
 |