mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 01:09:35 +02:00
13 lines
132 B
ObjectPascal
13 lines
132 B
ObjectPascal
{ %fail }
|
|
{ %opt=-vw -Sew }
|
|
|
|
procedure rrr;
|
|
var bar: array[0..1] of integer;
|
|
begin
|
|
if bar[1]=1 then;
|
|
end;
|
|
|
|
BEGIN
|
|
rrr ;
|
|
END.
|