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 / uw7381.pp
Size: Mime:
{$mode objfpc}
unit uw7381;


interface


type
    c1 = class
        procedure p1;
    end;
    c1array = array [0..1] of c1;


implementation


procedure c1.p1;
begin
end;


procedure test(const a: c1array);inline;
begin
    a[0].p1;
end;


end.