blob: 275a83e606e400b4945220ffeef9c44d9dc0d0c7 [file] [log] [blame] [view]
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!
}
```