mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			241 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			241 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "foo"]
 | |
| #![deny(rustdoc::broken_intra_doc_links)]
 | |
| pub enum Foo {
 | |
|     Bar {
 | |
|         abc: i32,
 | |
|         /// [Self::Bar::abc]
 | |
|         xyz: i32,
 | |
|     },
 | |
| }
 | |
| 
 | |
| // @has foo/enum.Foo.html '//a/@href' 'enum.Foo.html#variant.Bar.field.abc'
 | 
