mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00

It's probably not fully correct(see comment about procdef copy) but seems good enough ¯\_(ツ)_/¯
53 lines
663 B
ObjectPascal
53 lines
663 B
ObjectPascal
{ %VERSION=1.1 }
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}
|
|
{$endif}
|
|
|
|
type
|
|
ITest = interface(IUnknown)
|
|
procedure DoSomething;
|
|
end;
|
|
|
|
|
|
TMyClass = class(TInterfacedObject, ITest)
|
|
procedure DoSomething;
|
|
end;
|
|
|
|
var
|
|
i : longint;
|
|
|
|
procedure TMyClass.DoSomething;
|
|
begin
|
|
inc(i);
|
|
end;
|
|
|
|
|
|
procedure DoTest(const ATest: ITest);
|
|
begin
|
|
ATest.DoSomething;
|
|
end;
|
|
|
|
|
|
procedure DoTest2(ATest: ITest);
|
|
begin
|
|
ATest.DoSomething;
|
|
end;
|
|
|
|
type TMyClassCopy = type TMyClass;
|
|
|
|
|
|
var
|
|
c: ITest;
|
|
begin
|
|
i:=0;
|
|
c := TMyClassCopy.Create;
|
|
DoTest(c);
|
|
DoTest2(c);
|
|
if i<>2 then
|
|
begin
|
|
writeln('Problem with passing interfaces as parameters');
|
|
halt(1);
|
|
end;
|
|
end.
|