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 / tw16100.pp
Size: Mime:
{$mode objfpc}
{$interfaces corba}
type
MyInterface = interface
end;

generic MyGenInterface<_T> = interface
    procedure MyProc(x:_T);
end;

MyGenInterface_Pointer = specialize MyGenInterface<Pointer>;

MyClass = class(MyInterface,MyGenInterface_Pointer)
    procedure MyProc(x:Pointer);
end;

procedure MyClass.MyProc(x:Pointer);
begin
end;

begin
end.