mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			227 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			227 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "foo"]
 | |
| 
 | |
| pub trait Array {
 | |
|     type Item;
 | |
| }
 | |
| 
 | |
| //@ has foo/trait.Array.html
 | |
| //@ has - '//*[@class="impl"]' 'impl<T, const N: usize> Array for [T; N]'
 | |
| impl<T, const N: usize> Array for [T; N] {
 | |
|     type Item = T;
 | |
| }
 | 
