mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-27 14:10:24 +01: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.
|
|
|