mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 21:11:45 +02:00
12 lines
106 B
ObjectPascal
12 lines
106 B
ObjectPascal
{ %fail }
|
|
procedure p(var S : RawByteString);
|
|
begin
|
|
end;
|
|
|
|
var
|
|
s1 : UTF8String;
|
|
|
|
begin
|
|
p(s1);
|
|
end.
|