+ test for previous commit

git-svn-id: trunk@8271 -
This commit is contained in:
Jonas Maebe 2007-08-12 13:20:46 +00:00
parent 12791bf4f1
commit 9e46525912
2 changed files with 16 additions and 0 deletions

1
.gitattributes vendored
View File

@ -8344,6 +8344,7 @@ tests/webtbs/tw8977.pp svneol=native#text/plain
tests/webtbs/tw9026.pp svneol=native#text/plain
tests/webtbs/tw9054.pp svneol=native#text/plain
tests/webtbs/tw9059.pp svneol=native#text/plain
tests/webtbs/tw9072.pp svneol=native#text/plain
tests/webtbs/tw9073.pp svneol=native#text/plain
tests/webtbs/tw9076.pp svneol=native#text/plain
tests/webtbs/tw9076a.pp svneol=native#text/plain

15
tests/webtbs/tw9072.pp Normal file
View File

@ -0,0 +1,15 @@
{ %opt=-Sew }
{$mode tp}
var
a: array[1..2] of longint;
l: longint;
begin
l:=0;
for a[1]:=1 to 10 do
for a[2]:=1 to 10 do
inc(l);
if (l<>100) then
halt(1);
end.