mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
23 lines
950 B
Plaintext
23 lines
950 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,
|
|
| |__________- 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 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|