summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw3183.pp
blob: ac6bba9ac83955a0104739d723145ceee3cb0224 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{$ifdef fpc}{$mode delphi}{$endif}

type
  IA=interface
   function copy:String;
  end;

  IB=interface(IA)
   function copy:integer;
  end;

begin
end.