mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			314 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			314 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //! This test makes sure that with never show the inner fields in the
 | |
| //! aliased type view of type alias.
 | |
| 
 | |
| #![crate_name = "foo"]
 | |
| 
 | |
| use std::collections::BTreeMap;
 | |
| 
 | |
| //@ has 'foo/type.FooBar.html' '//*[@class="rust item-decl"]/code' 'struct FooBar { /* private fields */ }'
 | |
| pub type FooBar = BTreeMap<u32, String>;
 | 
