mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			358 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			358 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-rustfix
 | |
| struct X {
 | |
|     x: String,
 | |
| }
 | |
| 
 | |
| impl Drop for X {
 | |
|     fn drop(&mut self) {
 | |
|         println!("value: {}", self.x);
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn unwrap(x: X) -> String {
 | |
|     let X { x: ref y } = x; //~ ERROR cannot move out of type
 | |
|     y.to_string()
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     let x = X { x: "hello".to_string() };
 | |
|     let y = unwrap(x);
 | |
|     println!("contents: {}", y);
 | |
| }
 | 
