mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:28:55 +02:00
13 lines
138 B
ObjectPascal
13 lines
138 B
ObjectPascal
{$mode delphi}
|
|
type
|
|
ta = interface
|
|
function a: longint;
|
|
end;
|
|
|
|
tb = interface(ta)
|
|
function a: ansistring;
|
|
end;
|
|
|
|
begin
|
|
end.
|