mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
16 lines
124 B
ObjectPascal
16 lines
124 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tw30494;
|
|
|
|
{$MODE DELPHI}
|
|
|
|
type
|
|
TFoo<T: TObject> = record
|
|
end;
|
|
|
|
var
|
|
foo: TFoo<Integer>;
|
|
begin
|
|
end.
|
|
|