+ test for last commit

This commit is contained in:
florian 2025-02-09 16:35:30 +01:00
parent 1e041077cc
commit 7b67378206

20
tests/tbs/tb0720.pp Normal file
View File

@ -0,0 +1,20 @@
{$apptype console}
{$mode objfpc}
type
Cls = class(TInterfacedObject)
destructor Destroy; override;
end;
var
ClsInstance: IUnknown;
destructor Cls.Destroy;
begin
writeln(Assigned(ClsInstance));
if Assigned(ClsInstance) then
halt(1);
end;
begin
ClsInstance := Cls.Create;
end.