+ add test for already fixed #39844

This commit is contained in:
Sven/Sarah Barth 2025-01-04 11:18:00 +01:00
parent 7991eba0d1
commit bb8098adea

24
tests/webtbs/tw39844.pp Normal file
View File

@ -0,0 +1,24 @@
program tw39844;
{$mode objfpc} {$typedaddress on} {$modeswitch typehelpers} {$coperators on}
type
XType = double;
XTypeHelper = type helper for XType
procedure Add(x: XType); inline;
end;
procedure XTypeHelper.Add(x: XType);
begin
self += x;
end;
var
x: XType;
begin
x := 0;
(@x)^.Add(1);
if x <> 1 then begin writeln('x = ', x, ', expected 1'); halt(1); end;
writeln('ok');
end.