fpc/tests/webtbs/tw28650.pp
svenbarth 2cf8cdd885 Fix for Mantis #28650.
rtl/objpas/sysutils/sysstrh.inc:
  * forward PString to ObjPas.PString to avoid potential type conflicts

+ added test

git-svn-id: trunk@31603 -
2015-09-11 15:38:59 +00:00

21 lines
149 B
ObjectPascal

unit tw28650;
{$mode objfpc}{$H+}
interface
function Test: PString;
implementation
uses
SysUtils;
function Test: PString;
begin
end;
end.