# E4081

The identifier is bound more than once in the same pattern.

It is not possible to bind two values to one identifier because they might have
different values. If you want to shadow the first identifier, you can use `_` to
discard it.

## Erroneous Example

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

## Suggestion

Use a different name for the second identifier.

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

If you want a shadow-like behavior here, you can explicitly discard the first
`a` using `_`:

```{literalinclude} /sources/error_codes/4081_fixed/top_1.mbt
:language: moonbit
```
