blob: acf70af4c6477af1d93659d927679ec4e62c26e6 (
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
|
{ Source provided for Free Pascal Bug Report 3184 }
{ Submitted by "Martin Schreiber" on 2004-06-25 }
{ e-mail: }
unit uw3184b;
{$ifdef fpc}{$mode objfpc}{$H+}{$endif}
interface
uses
uw3184a;
type
tclass2 = class(tclass1)
public
function proc2:longint;
end;
implementation
function tclass2.proc2:longint;
begin
result:=proc1;
end;
end.
|