mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-19 08:16:22 +01: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.
|
|
|