fpc/tests/tbs/ub0629.pp
2017-08-29 18:29:10 +00:00

24 lines
301 B
ObjectPascal

unit ub0629;
{$mode objfpc}
{$modeswitch advancedrecords}
interface
uses
typinfo;
type
TTest = record
generic class function GetTypeInfo<T>: PTypeInfo; static;
end;
implementation
generic class function TTest.GetTypeInfo<T>: PTypeInfo;
begin
Result := System.TypeInfo(T);
end;
end.