mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
24 lines
301 B
ObjectPascal
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.
|