Files
rust/tests/ui/span
Esteban Küber 8dbdb1760b On binding not present in all patterns, suggest potential typo
```
error[E0408]: variable `Ban` is not bound in all patterns
 --> f12.rs:9:9
  |
9 |         (Foo,Bar)|(Ban,Foo) => {}
  |         ^^^^^^^^^  --- variable not in all patterns
  |         |
  |         pattern doesn't bind `Ban`
  |
help: you might have meant to use the similarly named previously used binding `Bar`
  |
9 -         (Foo,Bar)|(Ban,Foo) => {}
9 +         (Foo,Bar)|(Bar,Foo) => {}
  |
```
2025-08-25 15:16:25 +00:00
..
2023-01-15 19:46:20 +00:00
2023-01-15 19:46:20 +00:00
2023-01-15 19:46:20 +00:00
2023-03-08 00:00:18 +00:00
2025-07-15 09:21:27 +02:00
2025-07-15 09:21:27 +02:00
2024-01-13 12:46:58 -05:00
2023-01-15 19:46:20 +00:00
2023-05-08 03:36:30 +00:00
2025-03-30 01:32:21 +03:00
2023-01-15 19:46:20 +00:00