Delphi Compiler Error
E2031 Label expected
Reason for the Error & Solution
This error message occurs if the identifier given in a goto statement or used as a label in inline assembly is not declared as a label.
program Produce;
begin
if 2*2 <> 4 then
goto Exit; (*<-- Error message here: Exit is also a standard procedure*)
(*...*)
Exit: (*Additional error messages here*)
end.
program Solve;
label
Exit; (*Labels must be declared in Delphi*)
begin
if 2*2 <> 4 then
goto Exit;
(*...*)
Exit:
end.