about summary refs log tree commit diff
path: root/tests/ui/pattern/deref-patterns/implicit-cow-deref.rs
AgeCommit message (Collapse)AuthorLines
2025-05-06let deref patterns participate in usefulness/exhaustivenessdianne-4/+0
This does not yet handle the case of mixed deref patterns with normal constructors; it'll ICE in `Constructor::is_covered_by`. That'll be fixed in a later commit.
2025-04-24move existing tests away from using boxesdianne-2/+3
Since deref patterns on boxes will be lowered differently, I'll be making a separate test file for them. This makes sure we're still testing the generic `Deref(Mut)::deref(_mut)`-based lowering.
2025-04-16Make cow_of_cow test a teeny bit more explicitNadrieril-1/+2
2025-04-16don't peel ADTs the pattern could matchdianne-0/+44
This is the use for the previous commits' refactors; see the messages there for more information.