about summary refs log tree commit diff
path: root/tests/ui/parser/attribute/attr-pat-struct-rest.rs
AgeCommit message (Collapse)AuthorLines
2025-02-03Do not allow attributes on struct field rest patternsJack Rickard-0/+8
This removes support for attributes on struct field rest patterns (the `..`) from the parser. Previously they were being parsed but dropped from the AST, so didn't work and were deleted by rustfmt.