mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			441 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			441 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // https://github.com/rust-lang/rust/issues/82465
 | |
| #![crate_name = "foo"]
 | |
| 
 | |
| use std::convert::AsRef;
 | |
| pub struct Local;
 | |
| 
 | |
| //@ has foo/struct.Local.html '//h3[@class="code-header"]' 'impl AsRef<str> for Local'
 | |
| impl AsRef<str> for Local {
 | |
|     fn as_ref(&self) -> &str {
 | |
|         todo!()
 | |
|     }
 | |
| }
 | |
| 
 | |
| //@ has - '//h3[@class="code-header"]' 'impl AsRef<Local> for str'
 | |
| impl AsRef<Local> for str {
 | |
|     fn as_ref(&self) -> &Local {
 | |
|         todo!()
 | |
|     }
 | |
| }
 | 
