* redefine also PPChar and PPPChar depending on the string type mode, resolves #40491

This commit is contained in:
florian 2023-10-31 23:13:22 +01:00
parent e00ab51185
commit b2a13077c0
3 changed files with 21 additions and 1 deletions

View File

@ -22,6 +22,8 @@ interface
type
Char = AnsiChar;
PChar = PAnsiChar;
PPChar = ^PChar;
PPPChar = ^PPChar;
implementation

View File

@ -20,7 +20,8 @@ interface
type
Char = widechar;
PChar = pwidechar;
PPChar = ^PChar;
PPPChar = ^PPChar;
{$ifdef FPC_HAS_FEATURE_COMMANDARGS}
{$ifdef MSWINDOWS}

17
tests/webtbs/tw40491.pp Normal file
View File

@ -0,0 +1,17 @@
program test;
{$MODE OBJFPC}
{$MODESWITCH UNICODESTRINGS}
var
S: string;
pS: PChar;
ppS: PPChar;
begin
S := 'test string';
pS := @S[1];
ppS := @pS;
pS := ppS^; // Error: Incompatible types: got "PChar" expected "PWideChar"
WriteLn(string(pS));
end.