mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
17 lines
156 B
ObjectPascal
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.
|
|
|