]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/issue-65611.stderr
Rollup merge of #80771 - thomcc:nonnull-refmut, r=dtolnay
[rust.git] / src / test / ui / typeck / 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 `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`.