]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-25368.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.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`.