This section lists all messages that can be displayed if the code generator encounters an error condition.
var p : pointer;
...
p:=@mem[a000:000];
|
while false do
begin
{.. code ...}
end;
|
label 1;
...
try
if not(final) then
goto 1; // this line will cause an error
finally
...
end;
1:
...
|
...
try
p;
finally
...
exit; // This exit ISN'T allowed
end;
...
|