C1405: Goto <undeclared label>=""> in this function

[ERROR]

Description

A goto label was found, but the specified label did not exist in the same function.

Example
  void main(void) {

  
    goto label;

  
  }

  
Tips

Insert a label in the function with the same name as specified in the goto statement.