mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
13 lines
141 B
ObjectPascal
13 lines
141 B
ObjectPascal
{%NORUN}
|
|
{$mode objfpc}
|
|
|
|
type
|
|
PInteger = ^Integer;
|
|
var
|
|
A: array[1..10] of PInteger;
|
|
E: PInteger;
|
|
begin
|
|
for E in A do
|
|
E^:=1;
|
|
end.
|