fpc/tests/webtbs/tw32510.pp
Jonas Maebe c0b0fa9c0b * change the type of the -gt uninitialised result of ansistring functions to
rawbytestring so the compiler does not try to convert it to the declared
    string type of the function result, as this may not be available
    (mantis #32510)

git-svn-id: trunk@37889 -
2018-01-01 18:04:13 +00:00

19 lines
270 B
ObjectPascal

{ %norun }
unit tw32510;
interface
type
RawUnicode = type AnsiString(1200);
function AnsiToRawUnicode(const AnsiText: RawByteString): RawUnicode;
implementation
function AnsiToRawUnicode(const AnsiText: RawByteString): RawUnicode;
begin
end;
initialization
end.