# E3008

There are multiple `..` patterns in an array pattern. Use at most one `..` in
each array pattern.

## Erroneous example

```{literalinclude} /sources/error_codes/3008_error/top.mbt
:language: moonbit
```

## Suggestion

Remove the extra `..` pattern.

```{literalinclude} /sources/error_codes/3008_fixed/top.mbt
:language: moonbit
```
