mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			344 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			344 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| // #81395: Fix ICE when recursing into Deref target only differing in type args
 | |
| 
 | |
| pub struct Generic<T>(T);
 | |
| 
 | |
| impl<'a> std::ops::Deref for Generic<&'a mut ()> {
 | |
|     type Target = Generic<&'a ()>;
 | |
|     fn deref(&self) -> &Self::Target {
 | |
|         unimplemented!()
 | |
|     }
 | |
| }
 | |
| 
 | |
| impl<'a> Generic<&'a ()> {
 | |
|     pub fn some_method(&self) {}
 | |
| }
 | 
