mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:08:08 +02:00
13 lines
154 B
ObjectPascal
13 lines
154 B
ObjectPascal
{$ifdef fpc}{$mode objfpc}{$endif}
|
|
|
|
type
|
|
imyinterface2 = interface
|
|
procedure p;
|
|
end;
|
|
|
|
const
|
|
iid_imyinterface2 = imyinterface2;
|
|
|
|
begin
|
|
end.
|