fpc/tests/webtbs/tw3176.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

28 lines
424 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 3176 }
{ Submitted by "Marcel Martin" on 2004-06-21 }
{ e-mail: mm10@ellipsa.net }
program test;
{$MODE OBJFPC}
{$GOTO ON}
label DONE1;
var i : Longint;
begin
i := 0;
try
if i < 0 then goto DONE1;
i := 1;
//...
DONE1:
finally
i := 2;
end;
if i<>2 then
halt(1);
end.
//DONE1:
// begin end; <- inserting this line fixes the problem
// finally