Browse Source

* new bugs

peter 22 years ago
parent
commit
4c9c767687
2 changed files with 16 additions and 0 deletions
  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.