mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			368 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			368 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ has strip_enum_variant/enum.MyThing.html
 | |
| //@ has - '//code' 'Shown'
 | |
| //@ !has - '//code' 'NotShown'
 | |
| //@ has - '//code' '// some variants omitted'
 | |
| // Also check that `NotShown` isn't displayed in the sidebar.
 | |
| //@ snapshot no-not-shown - '//*[@class="sidebar-elems"]/section/*[@class="block variant"]'
 | |
| pub enum MyThing {
 | |
|     Shown,
 | |
|     #[doc(hidden)]
 | |
|     NotShown,
 | |
| }
 | 
