2022-09-20 16:39:39 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-101984.rs:21:13
|
|
|
|
|
|
|
|
|
LL | let (cmp, router) = self.router.at()?;
|
2022-09-21 15:57:30 +00:00
|
|
|
| ^^^^^^^^^^^^^ ----------------- this expression has type `Match<&(for<'a> fn(&'a ()), Box<Wrapper>)>`
|
2022-09-20 16:39:39 +00:00
|
|
|
| |
|
2023-01-06 01:11:50 +00:00
|
|
|
| expected `Match<&(fn(&()), Box<Wrapper>)>`, found `(_, _)`
|
2022-09-20 16:39:39 +00:00
|
|
|
|
|
2022-09-21 15:57:30 +00:00
|
|
|
= note: expected struct `Match<&(for<'a> fn(&'a ()), Box<Wrapper>)>`
|
2022-09-20 16:39:39 +00:00
|
|
|
found tuple `(_, _)`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-09-20 16:39:39 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|