rust/tests/ui/impl-trait/call_method_ambiguous.next.stderr

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

18 lines
520 B
Plaintext
Raw Permalink Normal View History

2024-04-15 06:20:33 -05:00
error[E0282]: type annotations needed
--> $DIR/call_method_ambiguous.rs:26:13
2024-04-15 06:20:33 -05:00
|
LL | let mut iter = foo(n - 1, m);
| ^^^^^^^^
LL |
LL | assert_eq!(iter.get(), 1);
| ---- type must be known at this point
|
help: consider giving `iter` an explicit type
|
LL | let mut iter: /* Type */ = foo(n - 1, m);
| ++++++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0282`.