mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			961 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			961 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error[E0308]: mismatched types
 | 
						|
  --> $DIR/arg-position-impl-trait-too-long.rs:18:9
 | 
						|
   |
 | 
						|
LL |       y: impl FnOnce(
 | 
						|
   |  ________-
 | 
						|
LL | |         &mut Header,
 | 
						|
LL | |         &mut [EntryMetadata],
 | 
						|
LL | |         &mut [Entry<C::EncodedKey, C::EncodedValue>]
 | 
						|
LL | |     ) -> R,
 | 
						|
   | |__________- expected this type parameter
 | 
						|
LL |   ) {
 | 
						|
LL |       let () = y;
 | 
						|
   |           ^^   - this expression has type `impl FnOnce(&mut Header, &mut [EntryMetadata], &mut [Entry<C::EncodedKey, C::EncodedValue>]) -> R`
 | 
						|
   |           |
 | 
						|
   |           expected type parameter `impl FnOnce(&mut Header, &mut [EntryMetadata], &mut [Entry<C::EncodedKey, C::EncodedValue>]) -> R`, found `()`
 | 
						|
   |
 | 
						|
   = note: expected type parameter `impl FnOnce(&mut Header, &mut [EntryMetadata], &mut [Entry<C::EncodedKey, C::EncodedValue>]) -> R`
 | 
						|
                   found unit type `()`
 | 
						|
 | 
						|
error: aborting due to 1 previous error
 | 
						|
 | 
						|
For more information about this error, try `rustc --explain E0308`.
 |