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 / tw26976.pp
Size: Mime:
{ %norun }

{$MODE OBJFPC}
program test;

type
   TTest = class end;

procedure E(Arg1: array of UTF8String);
begin end;

procedure E(Arg1: array of TTest);
begin end;

begin
   E(['aa']); // Incompatible types: got "Constant String" expected "TTest"
end.