mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			337 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			337 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // check-pass
 | |
| 
 | |
| /// [`…foo`] [`…bar`] [`Err`]
 | |
| pub struct Broken {}
 | |
| 
 | |
| /// [`…`] [`…`] [`Err`]
 | |
| pub struct Broken2 {}
 | |
| 
 | |
| /// [`…`][…] [`…`][…] [`Err`]
 | |
| pub struct Broken3 {}
 | |
| 
 | |
| /// […………………………][Broken3]
 | |
| pub struct Broken4 {}
 | |
| 
 | |
| /// [Broken3][…………………………]
 | |
| pub struct Broken5 {}
 | |
| 
 | |
| pub struct Err;
 |