Closed
Description
(As I mentioned on Zulip:)
I tried out the migration lints on some of my own code, and ran into one false positive:
- A
StructOpt
struct being used withOpt::from_iter
help: disambiguate the associated function: `<Opt as StructOpt>::from_iter`
This doesn't actually become ambiguous when FromIterator is imported, because Opt doesn't implement that.
Niko said:
shouldn't be that hard, we just need a call to
evaluate_predicate
I think