summaryrefslogtreecommitdiff
path: root/tests/webtbf/tw34821.pp
blob: d68a406bcfcc771465ded5e7902bc84f59cef3c0 (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
28
29
{ %fail }

 unit tw34821;

{$mode objfpc}{$H+}

interface

type TStrBuilder = class
  procedure append(); inline;
end;

type TTest = object
  procedure xyz;
end;

implementation

procedure TStrBuilder.append();
begin
  TTest.xyz;
end;

procedure TTest.xyz;
begin
end;

end.