mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			539 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			539 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![deny(rustdoc::broken_intra_doc_links)]
 | |
| 
 | |
| pub mod char {
 | |
|     /// [char]
 | |
|     // @has prim_precedence/char/struct.Inner.html '//a/@href' '{{channel}}/std/primitive.char.html'
 | |
|     pub struct Inner;
 | |
| }
 | |
| 
 | |
| /// See [prim@char]
 | |
| // @has prim_precedence/struct.MyString.html '//a/@href' '{{channel}}/std/primitive.char.html'
 | |
| pub struct MyString;
 | |
| 
 | |
| /// See also [crate::char] and [mod@char]
 | |
| // @has prim_precedence/struct.MyString2.html '//*[@href="char/index.html"]' 'crate::char'
 | |
| // @has - '//*[@href="char/index.html"]' 'char'
 | |
| pub struct MyString2;
 | 
