mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 17:49:33 +02:00
14 lines
192 B
ObjectPascal
14 lines
192 B
ObjectPascal
program tw17945;
|
|
{$mode delphi}
|
|
type
|
|
TFoo = class
|
|
public
|
|
type
|
|
TEnumerator = object
|
|
private
|
|
FFoo: TFoo; //Was error: Illegal expression
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
end. |