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