mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:28:14 +02:00
14 lines
125 B
ObjectPascal
14 lines
125 B
ObjectPascal
{ %FAIL }
|
|
|
|
procedure p(a:array of char);
|
|
begin
|
|
end;
|
|
|
|
var
|
|
s1 : ansistring;
|
|
s2 : shortstring;
|
|
begin
|
|
p(s1);
|
|
p(s2);
|
|
end.
|