fpc/tests/webtbs/tw24072.pp
2014-06-06 15:39:30 +00:00

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.