mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			194 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			194 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| #![deny(warnings)]
 | |
| 
 | |
| //! [usize::Item]
 | |
| 
 | |
| pub trait Foo { type Item; }
 | |
| pub trait Bar { type Item; }
 | |
| 
 | |
| impl Foo for usize { type Item = u32; }
 | |
| impl Bar for usize { type Item = i32; }
 | 
