diff options
| author | Lieselotte <52315535+she3py@users.noreply.github.com> | 2023-12-28 15:02:17 +0100 |
|---|---|---|
| committer | Lieselotte <52315535+she3py@users.noreply.github.com> | 2023-12-28 15:02:17 +0100 |
| commit | 7d6cd6bf1f780a7ce8487daa27eae82fd60bfcd7 (patch) | |
| tree | 78d3d5f928cbd1464e6cd05a7e66588405eaf94c /tests/ui/half-open-range-patterns/range_pat_interactions1.rs | |
| parent | f4d794ea0b845413344621d89f6c945062748485 (diff) | |
| download | rust-7d6cd6bf1f780a7ce8487daa27eae82fd60bfcd7.tar.gz rust-7d6cd6bf1f780a7ce8487daa27eae82fd60bfcd7.zip | |
Don't expect bodyless arms if the pattern can never be a never pattern
Diffstat (limited to 'tests/ui/half-open-range-patterns/range_pat_interactions1.rs')
| -rw-r--r-- | tests/ui/half-open-range-patterns/range_pat_interactions1.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/half-open-range-patterns/range_pat_interactions1.rs b/tests/ui/half-open-range-patterns/range_pat_interactions1.rs index 9ffc2190d20..55353999b67 100644 --- a/tests/ui/half-open-range-patterns/range_pat_interactions1.rs +++ b/tests/ui/half-open-range-patterns/range_pat_interactions1.rs @@ -17,7 +17,7 @@ fn main() { } match x as i32 { 0..5+1 => errors_only.push(x), - //~^ error: expected one of `,`, `=>`, `if`, `|`, or `}`, found `+` + //~^ error: expected one of `=>`, `if`, or `|`, found `+` 1 | -3..0 => first_or.push(x), y @ (0..5 | 6) => or_two.push(y), y @ 0..const { 5 + 1 } => assert_eq!(y, 5), |
