mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 23:39:31 +02:00
+ test for previous commit
git-svn-id: trunk@8271 -
This commit is contained in:
parent
12791bf4f1
commit
9e46525912
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
15
tests/webtbs/tw9072.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user