fpc/tests/test/tcpstr7.pp
paul 5bff550a15 merge r14141 from cpstrnew branch by paul:
+ test

git-svn-id: trunk@19097 -
2011-09-17 11:52:05 +00:00

20 lines
259 B
ObjectPascal

{$mode objfpc}{$H+}
{$hints off}
procedure APos(const substr: shortstring; const s: RawByteString);
begin
end;
procedure APos(const Substr: RawByteString; const Source: RawByteString);
begin
end;
const
C = '\';
begin
APos(C + '.' + C, 'Test');
end.