mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
12 lines
164 B
ObjectPascal
12 lines
164 B
ObjectPascal
|
|
{$mode objfpc}
|
|
type
|
|
IMyInterface = interface
|
|
function f : longint;
|
|
procedure p(a : longint);
|
|
property x : longint read f write p;
|
|
end;
|
|
|
|
begin
|
|
end.
|