Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / webtbs / tw16163.pp
Size: Mime:
{ %norun }

program test;

{$mode objfpc}

type
  TFColor = record
    b, g, r : Byte;
    // m : Byte; // uncomment it to avoid InternalError 200301231
  end;

  TFColorA = record
    c : TFColor;
    a : Byte;
    // adding some field here, or chaning a type to Word or Interger
    // also fixed the problem. 
  end;

function FColorToFColorA(C : TFColor) : TFColorA;
begin
  Result.c:=C;
  Result.a:=255;
end;

var
  t : TFColor;
  a : TFColor;
begin
  FillChar(a, sizeof(a), $55);
  t:=FColorToFColorA(a).c; // IE 200301231 why?
  if (t.b<>$55) or
     (t.r<>$55) or
     (t.g<>$55) then
    halt(1);
end.