mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 16:19:28 +02:00
17 lines
151 B
ObjectPascal
17 lines
151 B
ObjectPascal
{ %recompile }
|
|
|
|
{$mode objfpc}
|
|
|
|
uses uw8180;
|
|
|
|
type
|
|
tcl=class(TInterfacedObject,XStr)
|
|
end;
|
|
|
|
var
|
|
x : tcl;
|
|
begin
|
|
x:=tcl.create;
|
|
x._Addref;
|
|
end.
|