mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
25 lines
229 B
ObjectPascal
25 lines
229 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw24072;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TA<T> = record
|
|
end;
|
|
|
|
TB<T> = class
|
|
public
|
|
type
|
|
TC = TA<T>;
|
|
|
|
TD = record
|
|
Foo: TC; // ! FATAL !
|
|
end;
|
|
end;
|
|
|
|
var
|
|
t: TB<LongInt>;
|
|
begin
|
|
end.
|