mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 11:28:09 +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.
|