Esteban Küber a8f8b8de66 Fix "missing match arm body" suggestion involving !
Include the match arm guard in the gated span, so that the suggestion to add a body is correct instead of inserting the body before the guard.

Make the suggestion verbose.

```
error: `match` arm with no body
  --> $DIR/feature-gate-never_patterns.rs:43:9
   |
LL |         Some(_) if false,
   |         ^^^^^^^^^^^^^^^^
   |
help: add a body after the pattern
   |
LL |         Some(_) if false => { todo!() },
   |                          ++++++++++++++
```
2025-02-22 18:30:14 +00:00
..
2024-12-08 15:32:04 +08:00
2024-12-10 11:34:13 +08:00
2025-01-07 16:04:14 +01:00
2025-01-07 16:04:14 +01:00
2024-11-29 06:10:15 +11:00
2024-11-29 06:10:15 +11:00
2025-01-07 16:04:14 +01:00
2025-01-07 16:04:14 +01:00
2025-01-07 16:04:14 +01:00
2024-11-24 19:42:33 +01:00
2024-11-24 19:42:33 +01:00