mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:08:01 +02:00
44 lines
405 B
ObjectPascal
44 lines
405 B
ObjectPascal
{ %norun }
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
|
|
{ TItem }
|
|
|
|
TItem = class
|
|
public
|
|
procedure DoSomething;
|
|
end;
|
|
|
|
{ TConainer }
|
|
|
|
TContainer = class
|
|
public
|
|
constructor Create;
|
|
end;
|
|
|
|
{ TConainer }
|
|
|
|
constructor TContainer.Create;
|
|
begin
|
|
inherited Create;
|
|
with TItem.Create do
|
|
;
|
|
// begin end;
|
|
end;
|
|
|
|
{ TItem }
|
|
|
|
procedure TItem.DoSomething;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|
|
|