E2031 Label expected (Delphi)
Go Up to Error and Warning Messages (Delphi)
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.