fpc/tests/webtbf/tw4757.pp
Jonas Maebe a42730b1f3 + added
git-svn-id: trunk@2416 -
2006-02-03 16:23:41 +00:00

17 lines
156 B
ObjectPascal

{ %fail }
{$mode objfpc}
type
tc1 = class
fnext: tc1;
end;
tc2 = class(tc1)
property next: tc2 read fnext write fnext;
end;
begin
end.