mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-02 04:51:22 +02:00
17 lines
130 B
ObjectPascal
17 lines
130 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tgeneric85;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
generic TTest<T> = record
|
|
end;
|
|
|
|
const
|
|
Test: ^TTest = Nil;
|
|
|
|
begin
|
|
|
|
end.
|