]> git.lizzy.rs Git - rust.git/blob - tests/ui/inference/issue-86162-2.stderr
Rollup merge of #106321 - compiler-errors:delayed-bug-backtrace, r=Nilstrieb
[rust.git] / tests / ui / inference / issue-86162-2.stderr
1 error[E0283]: type annotations needed
2   --> $DIR/issue-86162-2.rs:12:14
3    |
4 LL |     Foo::bar(gen()); //<- Do not suggest `Foo::bar::<impl Clone>()`!
5    |     -------- ^^^ cannot infer type of the type parameter `T` declared on the function `gen`
6    |     |
7    |     required by a bound introduced by this call
8    |
9    = note: cannot satisfy `_: Clone`
10 note: required by a bound in `Foo::bar`
11   --> $DIR/issue-86162-2.rs:8:20
12    |
13 LL |     fn bar(x: impl Clone) {}
14    |                    ^^^^^ required by this bound in `Foo::bar`
15 help: consider specifying the generic argument
16    |
17 LL |     Foo::bar(gen::<T>()); //<- Do not suggest `Foo::bar::<impl Clone>()`!
18    |                 +++++
19
20 error: aborting due to previous error
21
22 For more information about this error, try `rustc --explain E0283`.