mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 03:38:21 +02:00
15 lines
149 B
ObjectPascal
15 lines
149 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tb0629;
|
|
|
|
{$mode objfpc}
|
|
|
|
uses
|
|
ub0629, typinfo;
|
|
|
|
var
|
|
ti: PTypeInfo;
|
|
begin
|
|
ti := TTest.specialize GetTypeInfo<LongInt>;
|
|
end.
|