Closed
Description
My where clauses in traits recently had some unnecessary noise that the compiler could warn against:
What I was doing:
impl<T> SomeTrait<T> where T: Clone, T: Debug
What I should have been doing:
impl<T> SomeTrait<T> where T: Clone + Debug
I'd be happy to implement this myself if there's a consensus on adding this as a warning, though I may need some mentoring 👍