about summary refs log tree commit diff
path: root/src/test/ui/let-else/let-else-allow-in-expr.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-28/+0
2022-09-15Remove the let_else feature gate from the testsuiteest31-2/+0
Result of running: rg -l "feature.let_else" src/test/ | xargs sed -s -i "s#^...feature.let_else..\$##" Plus manual tidy fixes.
2022-02-21Expand let-else allow testsest31-0/+30
The #[allow(...)] directive was tested for the body and the pattern, but non-presence of it wasn't tested. Furthermore, it wasn't tested for the expression. We add expression tests as well as ones checking the non-presence of the directive.