# E0008

Warning name: `redundant_modifier`

The modifier (`pub`/`priv`) is redundant here, since this field has such
visibility by default.

## Erroneous example

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

## Suggestion

Remove the visibility modifier on the field.

```{literalinclude} /sources/error_codes/0008_fixed/top.mbt
:language: moonbit
:start-after: remove redundant modifier
:end-before: end remove redundant modifier
```
