mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 14:23:25 +02:00

the other fpc_(u)char_to_*str() routines (exception dates back to the time calls to these routines were still inserted "manually" in the compiler). Fixes the compilation of "shortstr:=widecharconstant" after r23613 and simplifies other code calling this helper + test git-svn-id: branches/cpstrrtl@25428 -
10 lines
84 B
ObjectPascal
10 lines
84 B
ObjectPascal
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
|
|
var
|
|
s: shortstring;
|
|
begin
|
|
s:=#$1234;
|
|
end.
|