mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:47:53 +02:00
20 lines
233 B
ObjectPascal
20 lines
233 B
ObjectPascal
program tw18086;
|
|
|
|
{$mode delphi}
|
|
|
|
type
|
|
TFoo1 = class; //Error: Type "TFoo1" is not completely defined
|
|
|
|
TFoo2 = class //it compiles if TFoo2 is removed
|
|
type
|
|
TFoo3 = class
|
|
end;
|
|
end;
|
|
|
|
TFoo1 = class
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|