about summary refs log tree commit diff
path: root/tests/ui/methods/missing-bound-on-tuple.rs
AgeCommit message (Collapse)AuthorLines
2025-06-04Detect method not being present that is present in other tuple typesEsteban Küber-0/+39
When a method is not present because of a trait bound not being met, and that trait bound is on a tuple, we check if making the tuple have no borrowed types makes the method to be found and highlight it if it does. This is a common problem for Bevy in particular and ORMs in general.