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.2.0 / tests / webtbs / tw6543.pp
Size: Mime:
{$ifdef fpc}
{$mode objfpc}
{$endif}

program p;

type
  c = class
    a: array[boolean] of byte;
    property f: byte read a[false] write a[false];
  end;

var
  o: c;
begin
  o := c.Create;
  o.f := 1;
  if (o.a[false] <> 1) then
    halt(1);
end.