mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00

rtl/objpas/sysutils/sysstrh.inc: * forward PString to ObjPas.PString to avoid potential type conflicts + added test git-svn-id: trunk@31603 -
21 lines
149 B
ObjectPascal
21 lines
149 B
ObjectPascal
unit tw28650;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
function Test: PString;
|
|
|
|
implementation
|
|
|
|
uses
|
|
SysUtils;
|
|
|
|
function Test: PString;
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|
|
|