# E0085

Warning name: `unlabelled_break_in_labelled_loop`

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

## Erroneous example

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

## Suggestion

Name the loop explicitly in the `break`.

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