fpc/tests/webtbs/tw16803.pp
Jonas Maebe 60041ebf8b * allow exit(value) in exception blocks. Forbidding this dates back to
when this construct was still handled by custom code (mantis #16803)

git-svn-id: trunk@15492 -
2010-06-29 16:56:59 +00:00

46 lines
588 B
ObjectPascal

{ %opt=-g-h }
{$ifdef fpc}
{$mode delphi}
{$endif}
uses
sysutils;
function test1: longint;
begin
try
try
result:=1;
raise exception.create('1');
except
exit(2);
end;
except
exit(3);
end;
end;
function test2: ansistring;
begin
result:='a';
try
try
result:=result+'b';
raise exception.create('2');
except
result:=result+'c';
end;
except
result:=result+'d';
end;
end;
begin
HaltOnNotReleased:=true;
if test1<>2 then
halt(1);
if test2<>'abc' then
halt(2)
end.