summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw2721.pp
blob: 6f6a8351288d94273dc3d8dbfbbe869b93d6284d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ Source provided for Free Pascal Bug Report 2721 }
{ Submitted by "marcov" on  2003-10-07 }
{ e-mail:  }
{$mode Delphi}

type
  TIntfPersistent = class
  public
    function _Release: Integer; virtual; cdecl;
    end;

  t2 = class(Tintfpersistent)
    public
     function _Release: Integer; override;
    end;

function TIntfPersistent._Release: Integer;
begin
end;

function t2._Release: Integer;
begin
end;


begin
end.