mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 10:48:30 +02:00
12 lines
112 B
ObjectPascal
12 lines
112 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode tp}
|
|
|
|
var
|
|
a: array[1..10] of byte;
|
|
b: byte;
|
|
begin
|
|
b:=1;
|
|
for a[b] := 1 to 10 do ;
|
|
end.
|