* new test

git-svn-id: trunk@3892 -
This commit is contained in:
peter 2006-06-19 06:59:25 +00:00
parent 9998099a05
commit 79703f834e
2 changed files with 18 additions and 0 deletions

1
.gitattributes vendored
View File

@ -7184,6 +7184,7 @@ tests/webtbs/tw6435.pp svneol=native#text/plain
tests/webtbs/tw6491.pp svneol=native#text/plain
tests/webtbs/tw6624.pp svneol=native#text/plain
tests/webtbs/tw6684.pp svneol=native#text/plain
tests/webtbs/tw6700.pp svneol=native#text/plain
tests/webtbs/tw6735.pp svneol=native#text/plain
tests/webtbs/tw6742.pp svneol=native#text/plain
tests/webtbs/tw6767.pp svneol=native#text/plain

17
tests/webtbs/tw6700.pp Normal file
View File

@ -0,0 +1,17 @@
program bug;
{$inline on}
{$goto on}
procedure crasher;inline;
label beg;
begin
goto beg;
beg:
end;
begin
crasher;
end.