mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			230 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			230 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| fn main() {
 | |
|     let mut my_stuff = std::collections::HashMap::new();
 | |
|     my_stuff.insert(0, 42);
 | |
| 
 | |
|     let (_, thing) = my_stuff.iter().next().unwrap();
 | |
| 
 | |
|     my_stuff.clear(); //~ ERROR cannot borrow
 | |
| 
 | |
|     println!("{}", *thing);
 | |
| }
 | 
