summaryrefslogtreecommitdiff
path: root/tests/webtbs/uw3179b.pp
blob: dcc42b6107cb92e784020366949f08ca39a1c1b3 (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 3179 }
{ Submitted by "Martin Schreiber" on  2004-06-21 }
{ e-mail:  }
unit uw3179b;

{$mode objfpc}{$H+}

interface
uses
 uw3179a;

type
 tclass2 = class(tclass1)
  public
   procedure proc2;
 end;

implementation

procedure tclass2.proc2;
begin
 proc1;
end;

end.