Rollup merge of #70417 - rakshith-ravi:master, r=Centril
parser: recover on `...` as a pattern, suggesting `..` Fixes #70388 My first PR to rust. So please let me know if I'm doing something wrong.
This commit is contained in:
commit
37e186087c
3 changed files with 57 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
struct Foo(i32);
|
||||
|
||||
fn main() {
|
||||
let Foo(...) = Foo(0); //~ ERROR unexpected `...`
|
||||
let [_, ..., _] = [0, 1]; //~ ERROR unexpected `...`
|
||||
let _recovery_witness: () = 0; //~ ERROR mismatched types
|
||||
}
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
error: unexpected `...`
|
||||
--> $DIR/issue-70388-recover-dotdotdot-rest-pat.rs:4:13
|
||||
|
|
||||
LL | let Foo(...) = Foo(0);
|
||||
| ^^^
|
||||
| |
|
||||
| not a valid pattern
|
||||
| help: for a rest pattern, use `..` instead of `...`
|
||||
|
||||
error: unexpected `...`
|
||||
--> $DIR/issue-70388-recover-dotdotdot-rest-pat.rs:5:13
|
||||
|
|
||||
LL | let [_, ..., _] = [0, 1];
|
||||
| ^^^
|
||||
| |
|
||||
| not a valid pattern
|
||||
| help: for a rest pattern, use `..` instead of `...`
|
||||
|
||||
error[E0308]: mismatched types
|
||||
--> $DIR/issue-70388-recover-dotdotdot-rest-pat.rs:6:33
|
||||
|
|
||||
LL | let _recovery_witness: () = 0;
|
||||
| -- ^ expected `()`, found integer
|
||||
| |
|
||||
| expected due to this
|
||||
|
||||
error: aborting due to 3 previous errors
|
||||
|
||||
For more information about this error, try `rustc --explain E0308`.
|
||||
Loading…
Add table
Add a link
Reference in a new issue