# E3007

Wrong location of `..` in a record pattern. Put `..` after the last field in the
pattern.

## Erroneous example

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

## Suggestion

Move `..` to the end of the record pattern, after all fields that you want to
bind:

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