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