mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 19:08:07 +02:00
13 lines
170 B
ObjectPascal
13 lines
170 B
ObjectPascal
procedure p(const S : RawByteString); overload;
|
|
begin
|
|
end;
|
|
|
|
procedure p(const S : UTF8String); overload;
|
|
begin
|
|
end;
|
|
var
|
|
s1 : RawByteString;
|
|
begin
|
|
p(s1);
|
|
end.
|