mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 14:48:03 +02:00
15 lines
174 B
ObjectPascal
15 lines
174 B
ObjectPascal
{ Old file: tbs0332.pp }
|
|
{ }
|
|
|
|
{$MODE objfpc}
|
|
uses Classes;
|
|
var
|
|
o: TComponent;
|
|
begin
|
|
o := TComponent(TComponent.NewInstance);
|
|
o.Create(nil);
|
|
o.Free;
|
|
end.
|
|
|
|
|