mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
24 lines
392 B
ObjectPascal
24 lines
392 B
ObjectPascal
{ %fail }
|
|
|
|
{ Source provided for Free Pascal Bug Report 4569 }
|
|
{ Submitted by "Vincent Snijders" on 2005-12-06 }
|
|
{ e-mail: vsnijders@quicknet.nl }
|
|
program fpcdos;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
TMyClassB = class;
|
|
TMyClassC = class;
|
|
|
|
TMyClassB = class(TMyClassC)
|
|
procedure DoSomething; override;
|
|
end;
|
|
|
|
TMyClassC = class(TMyClassB)
|
|
procedure DoSomething; override;
|
|
end;
|
|
|
|
begin
|
|
end.
|