peter %!s(int64=22) %!d(string=hai) anos
pai
achega
4c9c767687
Modificáronse 2 ficheiros con 16 adicións e 0 borrados
  1. 8 0
      tests/webtbf/tw2721.pp
  2. 8 0
      tests/webtbs/tw2721.pp

+ 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.