mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			294 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			294 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| // Test that associated item impls on primitive types don't crash rustdoc
 | |
| 
 | |
| // https://github.com/rust-lang/rust/issues/31808
 | |
| #![crate_name="issue_31808"]
 | |
| 
 | |
| pub trait Foo {
 | |
|     const BAR: usize;
 | |
|     type BAZ;
 | |
| }
 | |
| 
 | |
| impl Foo for () {
 | |
|     const BAR: usize = 0;
 | |
|     type BAZ = usize;
 | |
| }
 | 
