mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
16 lines
230 B
ObjectPascal
16 lines
230 B
ObjectPascal
program widecharbug;
|
|
|
|
var
|
|
AText : WideString;
|
|
AWideChar: PWideChar;
|
|
|
|
begin
|
|
AText := '';
|
|
AWideChar := PWideChar(AText);
|
|
if PWord(AWideChar)^<>0 then
|
|
begin
|
|
writeln(PWord(AWideChar)^);
|
|
halt(1);
|
|
end;
|
|
end.
|