mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 17:48:53 +02:00
9 lines
142 B
ObjectPascal
9 lines
142 B
ObjectPascal
{$ifdef fpc}{$mode delphi}{$endif}
|
|
type
|
|
tmyinterface = interface
|
|
procedure p(p : longint); // Delphi allows this
|
|
end;
|
|
|
|
begin
|
|
end.
|