mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			196 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			196 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "foo"]
 | |
| 
 | |
| pub enum Foo {
 | |
|     X {
 | |
|         y: u8,
 | |
|     }
 | |
| }
 | |
| 
 | |
| /// Hello
 | |
| ///
 | |
| /// I want [Foo::X::y].
 | |
| pub fn foo() {}
 | |
| 
 | |
| // @has foo/fn.foo.html '//a/@href' 'enum.Foo.html#variant.X.field.y'
 | 
