mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			515 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			515 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// run-pass
 | 
						|
#![allow(unused_mut)]
 | 
						|
#![allow(dead_code)]
 | 
						|
 | 
						|
#[derive(Clone)]
 | 
						|
struct Triple {
 | 
						|
    x: isize,
 | 
						|
    y: isize,
 | 
						|
    z: isize,
 | 
						|
}
 | 
						|
 | 
						|
fn test(x: bool, foo: Box<Triple>) -> isize {
 | 
						|
    let bar = foo;
 | 
						|
    let mut y: Box<Triple>;
 | 
						|
    if x { y = bar; } else { y = Box::new(Triple {x: 4, y: 5, z: 6}); }
 | 
						|
    return y.y;
 | 
						|
}
 | 
						|
 | 
						|
pub fn main() {
 | 
						|
    let x: Box<_> = Box::new(Triple{x: 1, y: 2, z: 3});
 | 
						|
    for _ in 0_usize..10000_usize {
 | 
						|
        assert_eq!(test(true, x.clone()), 2);
 | 
						|
    }
 | 
						|
    assert_eq!(test(false, x), 5);
 | 
						|
}
 |