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

uses
  TypInfo;

function GetTypeInfo(const i: Integer): PTypeInfo;
begin
  case i of
    0: Result := TypeInfo(System.Integer);
    1: Result := TypeInfo(System.Int64);
    2: Result := TypeInfo(System.String); //syntax error
    3: Result := TypeInfo(System.WideString);
  else
    Result := nil;
  end;
end;

begin
end.