]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-65611.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-65611.stderr
1 error[E0282]: type annotations needed
2 --> $DIR/issue-65611.rs:59:20
3 |
4 LL | let x = buffer.last().unwrap().0.clone();
5 | -------^^^^--
6 | | |
7 | | cannot infer type for type parameter `T`
8 | this method call resolves to `std::option::Option<&T>`
9 |
10 = note: type must be known at this point
11
12 error[E0609]: no field `0` on type `&_`
13 --> $DIR/issue-65611.rs:59:36
14 |
15 LL | let x = buffer.last().unwrap().0.clone();
16 | ^
17
18 error: aborting due to 2 previous errors
19
20 Some errors have detailed explanations: E0282, E0609.
21 For more information about an error, try `rustc --explain E0282`.