mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 02:29:34 +02:00
13 lines
181 B
ObjectPascal
13 lines
181 B
ObjectPascal
{ %VERSION=1.1 }
|
|
|
|
{$mode objfpc}
|
|
type
|
|
IMyInterface = interface
|
|
function f : longint;
|
|
procedure p(a : longint);
|
|
property x : longint read f write p;
|
|
end;
|
|
|
|
begin
|
|
end.
|