summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbf/tw13971d.pp
blob: 5fb5ff317cba742b3dde568e5610cede603272f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ %fail }

{$ifdef fpc}
{$mode objfpc}
{$endif}

type
  tc = class
    function getx(i: longint): longint;
    default: longint;
  end;

function tc.getx(i: longint): longint;
begin
end;

begin
end.