Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-70388-recover-dotdotdot-rest-pat.rs
blob: ca8abd78c47ac0b7a535887642e07d65f79bb813 [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
(
i32
);
fn
main
()
{
let
Foo
(...)
=
Foo
(
0
);
//~ ERROR unexpected `...`
let
[
_
,
...,
_
]
=
[
0
,
1
];
//~ ERROR unexpected `...`
let
_recovery_witness
:
()
=
0
;
//~ ERROR mismatched types
}