aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/ui/lit_on_assignment_lhs.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use "target()" to parse "when" blockLibravatar René Kijewski2021-07-301-0/+11
`target()` as used in parsing "let" and "if let" implements parsing nested tuples and structs. But it does not implement parsing literals. The functions `match_variant()` and `with_parameters()` as used in parsing "when" blocks do not implement parsing nested structs, but it implements parsing literals. This PR combines `match_variant()` and `with_parameters()` into `target()`, so that all `{%when%}` support nested structs, too.