# E0086

Warning name: `unlabelled_continue_in_labelled_loop`

Using an unlabelled `continue` directly inside a labelled loop is deprecated.
Once a loop has a label, name it in a `continue` that targets the loop, even
when the `continue` is not nested inside another loop.

## Erroneous example

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

## Suggestion

Name the loop explicitly in the `continue`.

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