mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 11:09:33 +01:00
15 lines
149 B
ObjectPascal
15 lines
149 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
|
|
type
|
|
ta = interface
|
|
function a: longint;
|
|
end;
|
|
|
|
tb = interface(ta)
|
|
function a: ansistring;
|
|
end;
|
|
|
|
begin
|
|
end.
|