summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_codes/src/error_codes/E0426.md
blob: 275a83e606e400b4945220ffeef9c44d9dc0d0c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
An undeclared label was used.

Erroneous code example:

```compile_fail,E0426
loop {
    break 'a; // error: use of undeclared label `'a`
}
```

Please verify you spelled or declared the label correctly. Example:

```
'a: loop {
    break 'a; // ok!
}
```