mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 21:09:20 +02:00
* new bugs
This commit is contained in:
parent
b7cf110884
commit
4c9c767687
@ -13,9 +13,17 @@ type
|
|||||||
|
|
||||||
t2 = class(Tintfpersistent)
|
t2 = class(Tintfpersistent)
|
||||||
public
|
public
|
||||||
|
// Different calling convention
|
||||||
function _Release: Integer; override; stdcall;
|
function _Release: Integer; override; stdcall;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TIntfPersistent._Release: Integer;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
function t2._Release: Integer;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
end.
|
end.
|
||||||
|
@ -14,6 +14,14 @@ type
|
|||||||
function _Release: Integer; override;
|
function _Release: Integer; override;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TIntfPersistent._Release: Integer;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
function t2._Release: Integer;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
begin
|
begin
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user