Skip to content

Commit d19b51e

Browse files
authored
Rollup merge of #72534 - chrissimpkins:fix-72373, r=estebank
Improve missing `@` in slice binding pattern diagnostics Closes #72373 Includes a new suggestion with `Applicability::MaybeIncorrect` confidence level. Before: ``` --> src/main.rs:5:19 | 5 | [h, ref ts..] => foo(c, n - h) + foo(ts, n), | -^ | | | expected one of `,`, `@`, `]`, or `|` | help: missing `,` error[E0308]: mismatched types --> src/main.rs:5:46 | 5 | [h, ref ts..] => foo(c, n - h) + foo(ts, n), | ^^ expected slice `[u32]`, found `u32` | = note: expected reference `&[u32]` found reference `&u32` error: aborting due to 2 previous errors ``` After: ``` error: expected one of `,`, `@`, `]`, or `|`, found `..` --> src/main.rs:5:20 | 5 | [h, ref ts..] => foo(c, n - h) + foo(ts, n), | ^^ expected one of `,`, `@`, `]`, or `|` | help: if you meant to bind the contents of the rest of the array pattern into `ts`, use `@` | 5 | [h, ref ts @ ..] => foo(c, n - h) + foo(ts, n), | ^ error: aborting due to previous error ``` r? @estebank
2 parents 6786c7d + 593d1ee commit d19b51e

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

src/librustc_parse/parser/mod.rs

+20
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,26 @@ impl<'a> Parser<'a> {
672672
}
673673
}
674674

675+
// If this was a missing `@` in a binding pattern
676+
// bail with a suggestion
677+
// https://github.com/rust-lang/rust/issues/72373
678+
if self.prev_token.is_ident() && &self.token.kind == &token::DotDot {
679+
let msg = format!(
680+
"if you meant to bind the contents of \
681+
the rest of the array pattern into `{}`, use `@`",
682+
pprust::token_to_string(&self.prev_token)
683+
);
684+
expect_err
685+
.span_suggestion_verbose(
686+
self.prev_token.span.shrink_to_hi().until(self.token.span),
687+
&msg,
688+
" @ ".to_string(),
689+
Applicability::MaybeIncorrect,
690+
)
691+
.emit();
692+
break;
693+
}
694+
675695
// Attempt to keep parsing if it was an omitted separator.
676696
match f(self) {
677697
Ok(t) => {

src/test/ui/issues/issue-72373.rs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
fn foo(c: &[u32], n: u32) -> u32 {
2+
match *c {
3+
[h, ..] if h > n => 0,
4+
[h, ..] if h == n => 1,
5+
[h, ref ts..] => foo(c, n - h) + foo(ts, n),
6+
//~^ ERROR expected one of `,`, `@`, `]`, or `|`, found `..`
7+
[] => 0,
8+
}
9+
}

src/test/ui/issues/issue-72373.stderr

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
error: expected one of `,`, `@`, `]`, or `|`, found `..`
2+
--> $DIR/issue-72373.rs:5:19
3+
|
4+
LL | [h, ref ts..] => foo(c, n - h) + foo(ts, n),
5+
| ^^ expected one of `,`, `@`, `]`, or `|`
6+
|
7+
help: if you meant to bind the contents of the rest of the array pattern into `ts`, use `@`
8+
|
9+
LL | [h, ref ts @ ..] => foo(c, n - h) + foo(ts, n),
10+
| ^
11+
12+
error: aborting due to previous error
13+

0 commit comments

Comments
 (0)