mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			168 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			168 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ error-pattern:can't use generic parameters from outer item
 | |
| fn hd<U>(v: Vec<U> ) -> U {
 | |
|     fn hd1(w: [U]) -> U { return w[0]; }
 | |
| 
 | |
|     return hd1(v);
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
