about summary refs log tree commit diff
path: root/tests/ui/pub/pub-ident-struct-4.fixed
AgeCommit message (Collapse)AuthorLines
2023-02-01Fix condition for "missing `struct`" diagnostic on tuple structsXiretza-0/+6
The check previously matched this, and suggested adding a missing `struct`: pub Foo(...): It was probably intended to match this instead (semicolon instead of colon): pub Foo(...);