mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:47:56 +02:00
18 lines
165 B
ObjectPascal
18 lines
165 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tgeneric86;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$modeswitch advancedrecords}
|
|
|
|
type
|
|
generic TTest<T> = record
|
|
type
|
|
PTest = ^TTest;
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|
|
|