mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
15 lines
536 B
Plaintext
15 lines
536 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/issue-101984.rs:21:13
|
|
|
|
|
LL | let (cmp, router) = self.router.at()?;
|
|
| ^^^^^^^^^^^^^ ----------------- this expression has type `Match<&(for<'a> fn(&'a ()), Box<Wrapper>)>`
|
|
| |
|
|
| expected struct `Match`, found tuple
|
|
|
|
|
= note: expected struct `Match<&(for<'a> fn(&'a ()), Box<Wrapper>)>`
|
|
found tuple `(_, _)`
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|