fpc/tests/test/tmacnonlocalexit2.pp
florian fce9e953b4 + nested exit support
git-svn-id: trunk@23309 -
2013-01-04 19:09:04 +00:00

42 lines
476 B
ObjectPascal

{ %fail }
program tmacnonlocalexit2;
{$MODE MACPAS}
var
failed: Boolean;
procedure Global;
procedure AnotherLocal;
begin
end;
procedure Local;
begin
Exit(AnotherLocal);
failed := true;
end;
begin
Local;
failed := true;
end;
begin
failed := false;
Global;
if failed then
writeln('Failed')
else
writeln('Succeded');
{$IFC NOT UNDEFINED FPC}
if failed then
Halt(1);
{$ENDC}
end.