mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			399 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			399 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error[E0282]: type annotations needed
 | 
						|
  --> $DIR/cannot-infer-const-args.rs:6:5
 | 
						|
   |
 | 
						|
LL |     foo();
 | 
						|
   |     ^^^ cannot infer the value of the const parameter `X` declared on the function `foo`
 | 
						|
   |
 | 
						|
help: consider specifying the generic argument
 | 
						|
   |
 | 
						|
LL |     foo::<X>();
 | 
						|
   |        +++++
 | 
						|
 | 
						|
error: aborting due to previous error
 | 
						|
 | 
						|
For more information about this error, try `rustc --explain E0282`.
 |