fpc/tests/webtbs/tw25332a.pp
Jonas Maebe ffd6a4ea47 * set the code page of rawbytestring typed constants to the same value as
when assigning a string constant to a rawbytestring (system code page with
    {$modeswitch systemcodepage}, CP_ACP without) (mantis #25332)

git-svn-id: trunk@26397 -
2014-01-05 18:26:10 +00:00

9 lines
118 B
ObjectPascal

{$mode delphiunicode}
const r: rawbytestring = 'abc';
begin
if stringcodepage(r) = CP_NONE then
halt(1);
end.