about summary refs log tree commit diff
path: root/tests/ui/methods/missing-bound-on-tuple.rs
AgeCommit message (Collapse)AuthorLines
2025-08-22Revert "Detect method not being present that is present in other tuple types"Rémy Rakic-39/+0
This reverts commit 585a40963ea59808e74803f8610659a505b145e0.
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.