2
0
peter 22 жил өмнө
parent
commit
4c9c767687

+ 8 - 0
tests/webtbf/tw2721.pp

@@ -13,9 +13,17 @@ type
 
   t2 = class(Tintfpersistent)
     public
+     // Different calling convention 
      function _Release: Integer; override; stdcall;
     end;
 
+function TIntfPersistent._Release: Integer; 
+begin
+end;
+
+function t2._Release: Integer;
+begin
+end;
 
 begin
 end.

+ 8 - 0
tests/webtbs/tw2721.pp

@@ -14,6 +14,14 @@ type
      function _Release: Integer; override;
     end;
 
+function TIntfPersistent._Release: Integer; 
+begin
+end;
+
+function t2._Release: Integer;
+begin
+end;
+
 
 begin
 end.