mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			267 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			267 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // unit-test: Derefer
 | |
| // EMIT_MIR derefer_test_multiple.main.Derefer.diff
 | |
| fn main () {
 | |
|     let mut a = (42, 43);
 | |
|     let mut b = (99, &mut a);
 | |
|     let mut c = (11, &mut b);
 | |
|     let mut d = (13, &mut c);
 | |
|     let x = &mut (*d.1).1.1.1;
 | |
|     let y = &mut (*d.1).1.1.1;
 | |
| }
 | 
