mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 17:59:26 +02:00
10 lines
159 B
ObjectPascal
10 lines
159 B
ObjectPascal
{ %VERSION=1.1 }
|
|
{$ifdef fpc}{$mode delphi}{$endif}
|
|
type
|
|
tmyinterface = interface
|
|
procedure p(p : longint); // Delphi allows this
|
|
end;
|
|
|
|
begin
|
|
end.
|