mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00
9 lines
100 B
ObjectPascal
9 lines
100 B
ObjectPascal
{ %OPT=-Ooregvar }
|
|
program testopt;
|
|
var
|
|
ar: array[0..1] of byte;
|
|
begin
|
|
ar[0] := 1;
|
|
ar[1] := 2;
|
|
end.
|