mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 14:39:35 +02:00
14 lines
177 B
ObjectPascal
14 lines
177 B
ObjectPascal
{ %fail }
|
|
procedure p(const S : RawByteString); overload;
|
|
begin
|
|
end;
|
|
|
|
procedure p(const S : UTF8String); overload;
|
|
begin
|
|
end;
|
|
var
|
|
s1 : Ansistring;
|
|
begin
|
|
p(s1);
|
|
end.
|