* new bugs

This commit is contained in:
peter 2003-10-07 20:36:57 +00:00
parent b7cf110884
commit 4c9c767687
2 changed files with 16 additions and 0 deletions

View File

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

View File

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