]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-25368.stderr
Merge commit '61667dedf55e3e5aa584f7ae2bd0471336b92ce9' into sync_cg_clif-2021-09-19
[rust.git] / src / test / ui / issues / issue-25368.stderr
1 error[E0282]: type annotations needed for `(Sender<Foo<T>>, std::sync::mpsc::Receiver<Foo<T>>)`
2   --> $DIR/issue-25368.rs:11:17
3    |
4 LL |     let (tx, rx) = channel();
5    |         -------- consider giving this pattern the explicit type `(Sender<Foo<T>>, std::sync::mpsc::Receiver<Foo<T>>)`, where the type parameter `T` is specified
6 ...
7 LL |         tx.send(Foo{ foo: PhantomData });
8    |                 ^^^ cannot infer type for type parameter `T` declared on the struct `Foo`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0282`.