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 / test / tgeneric58.pp
Size: Mime:
{ %FAIL }

{ this tests that the dummy symbol that is introduced for generic "overloads"
  can not be used when it shouldn't be - Test 4 }
program tgeneric58;

{$ifdef fpc}
  {$mode objfpc}
{$endif}

type
  generic TTest<T> = class

  end;

var
  t: TObject;
begin
  t := TTest.Create;
end.