mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	 1d328de3ec
			
		
	
	
		1d328de3ec
		
	
	
	
	
		
			
			This swaps things around so that the class that gets used more often has the shorter name.
		
			
				
	
	
		
			12 lines
		
	
	
		
			307 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			307 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "foo"]
 | |
| 
 | |
| // The goal of this test is to ensure that it won't be generated as a list because
 | |
| // block doc comments can have their lines starting with a star.
 | |
| 
 | |
| // @has foo/fn.foo.html
 | |
| // @snapshot docblock - '//*[@class="toggle top-doc"]//*[@class="docblock"]'
 | |
| /**
 | |
|  *     a
 | |
|  */
 | |
| pub fn foo() {}
 |