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 / tw11543.pp
Size: Mime:
{ %norun }
unit tw11543;
{$ifdef fpc}{$mode objfpc}{$endif}

interface

type
  TSetOfChar = set of char;

  ttestclass = class(tobject)
    procedure p(const a: array of WideChar); overload;
    procedure p(const a: TSetOfChar); overload;
  end;

implementation

procedure ttestclass.p(const a: array of WideChar);
begin
end;

procedure ttestclass.p(const a: TSetOfChar);
begin
end;

end.