Throw error when encountering ... instead of .. while destructing a pattern
Added tests and stderr output
This commit is contained in:
parent
a17dd36084
commit
73c82030e8
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