mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
13 lines
120 B
ObjectPascal
13 lines
120 B
ObjectPascal
{ %fail }
|
|
{ %opt=-vw -Sew }
|
|
|
|
procedure rrr;
|
|
var zar: array[0..1] of integer;
|
|
begin
|
|
zar:=zar;
|
|
end;
|
|
|
|
BEGIN
|
|
rrr ;
|
|
END.
|