fpc/tests/webtbs/tw6700.pp
peter 79703f834e * new test
git-svn-id: trunk@3892 -
2006-06-19 06:59:25 +00:00

18 lines
129 B
ObjectPascal

program bug;
{$inline on}
{$goto on}
procedure crasher;inline;
label beg;
begin
goto beg;
beg:
end;
begin
crasher;
end.