fpc/tests/webtbs/tw36389.pp
florian ef7e4f6f62 * fix J. Gareth Moreton to resolve #36389
git-svn-id: trunk@43670 -
2019-12-09 22:00:45 +00:00

23 lines
335 B
ObjectPascal

{$inline on}
{$mode objfpc}
function Correct(TempInt: integer; Value: word): word; inline;
begin
if TempInt = 32768 then
Result := Value - TempInt
else
Result := 65536 - Value;
end;
procedure p;
var
Arr: array of word;
Temp: integer;
begin
SetLength(Arr,1);
Temp:= 42;
Arr[0] := Correct(Temp, Arr[0]);
end;
begin
end.