mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:47:56 +02:00
17 lines
122 B
ObjectPascal
17 lines
122 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tgeneric83;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TTest<T> = record
|
|
end;
|
|
|
|
const
|
|
Test: ^TTest = Nil;
|
|
|
|
begin
|
|
|
|
end.
|