An undeclared label was used.

Erroneous code example:

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

Please verify you spelt or declare the label correctly. Example:

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