소스 검색

* new bugs

peter 22 년 전
부모
커밋
4c9c767687
2개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  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.