rust/tests/ui/traits/suggest-fully-qualified-closure.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
657 B
Plaintext
Raw Normal View History

2022-11-08 21:15:02 -06:00
error[E0283]: type annotations needed
--> $DIR/suggest-fully-qualified-closure.rs:21:7
2022-11-08 21:15:02 -06:00
|
LL | q.lol(||());
| ^^^
|
note: multiple `impl`s satisfying `Qqq: MyTrait<_>` found
--> $DIR/suggest-fully-qualified-closure.rs:12:1
2022-11-08 21:15:02 -06:00
|
LL | impl MyTrait<u32> for Qqq{
| ^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL | impl MyTrait<u64> for Qqq{
| ^^^^^^^^^^^^^^^^^^^^^^^^^
help: try using a fully qualified path to specify the expected types
|
LL | <Qqq as MyTrait<T>>::lol::<_>(&q, ||());
| +++++++++++++++++++++++++++++++ ~
2022-11-08 21:15:02 -06:00
error: aborting due to 1 previous error
2022-11-08 21:15:02 -06:00
For more information about this error, try `rustc --explain E0283`.