summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw13840/tw13840b.pp
blob: 8e979ff3495e9a72ebb2100dc0a5ba0280f9ac9c (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
{ %interactive }

{ see tw13480d.pp for test instructions }

{$mode objfpc}

unit tw13840b;

interface

uses
  tw13840a;

type
  tb = class(ta)
  end;

implementation
{
procedure tb.test;
begin
  writeln('tb.test');
  inherited test;
end;
}
end.