diff options
Diffstat (limited to 'tests/ui/destructuring-assignment/slice_destructure_fail.rs')
| -rw-r--r-- | tests/ui/destructuring-assignment/slice_destructure_fail.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/ui/destructuring-assignment/slice_destructure_fail.rs b/tests/ui/destructuring-assignment/slice_destructure_fail.rs new file mode 100644 index 00000000000..33b09eb349d --- /dev/null +++ b/tests/ui/destructuring-assignment/slice_destructure_fail.rs @@ -0,0 +1,6 @@ +fn main() { + let (mut a, mut b); + [a, .., b, ..] = [0, 1]; //~ ERROR `..` can only be used once per slice pattern + [a, a, b] = [1, 2]; //~ ERROR pattern requires 3 elements but array has 2 + [_] = [1, 2]; //~ ERROR pattern requires 1 element but array has 2 +} |
