mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
12 lines
182 B
ObjectPascal
12 lines
182 B
ObjectPascal
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.
|