mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 00:38:06 +02:00
14 lines
153 B
ObjectPascal
14 lines
153 B
ObjectPascal
{$ifdef fpc}{$mode delphi}{$endif}
|
|
|
|
type
|
|
IA=interface
|
|
function copy:String;
|
|
end;
|
|
|
|
IB=interface(IA)
|
|
function copy:integer;
|
|
end;
|
|
|
|
begin
|
|
end.
|