summaryrefslogtreecommitdiff
path: root/tests/webtbs/tw1862.pp
blob: bd83ddf148fbfab264d87ed7598cad6d4382de48 (plain)
1
2
3
4
5
6
7
8
9
10
11
var x : array[1..1000] of double;
    z : array[1..100] of double absolute x;

begin
  z[10]:=10.0;
  if x[10]<>10.0 then
   begin
     writeln('ERROR!');
     halt(1);
   end;
end.