]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-12187-2.stderr
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / issues / issue-12187-2.stderr
1 error[E0282]: type annotations needed for `&T`
2   --> $DIR/issue-12187-2.rs:6:9
3    |
4 LL |     let &v = new();
5    |         ^^
6    |
7 help: consider giving this pattern a type, where the placeholders `_` are specified
8    |
9 LL |     let &v: &T = new();
10    |           ++++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0282`.