mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
11 lines
109 B
ObjectPascal
11 lines
109 B
ObjectPascal
{%FAIL}
|
|
{$mode objfpc}
|
|
|
|
var
|
|
A: array[1..10] of Integer;
|
|
E: Integer;
|
|
begin
|
|
for E in A do
|
|
E:=1;
|
|
end.
|