summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbf/tw9072b.pp
blob: 3238c1b013520f3bc9a84f88514e2932be81d57e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ %fail }

var
  a: array[1..2] of longint;
  l: longint;
begin
  l:=0;
  for a[1]:=1 to 10 do
    inc(l);
  if (l<>10) then
    halt(1);
end.