about summary refs log tree commit diff
path: root/tests/ui/pattern/patkind-ref-binding-issue-114896.fixed
AgeCommit message (Collapse)AuthorLines
2025-04-08UI tests: add missing diagnostic kinds where possibleVadim Petrochenkov-1/+1
2024-03-19Fix incorrect mutable suggestion information for binding in ref pattern.surechen-0/+10
For ref pattern in func param, the mutability suggestion has to apply to the binding. For example: `fn foo(&x: &i32)` -> `fn foo(&(mut x): &i32)` fixes #122415