blob: 3d5307835d89edb0183d68672cc74050d6c0e5e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{$ifdef fpc}
{$mode objfpc}
{$endif fpc}
uses
classes;
type
to1 = class(TObject,IInterface)
fi : IInterface;
property i : IInterface read fi implements IInterface;
end;
var
o1 : to1;
i1,i2 : IInterface;
begin
o1:=to1.create;
o1.fi:=TInterfacedObject.Create;
i1:=o1;
i1.QueryInterface(IInterface,i2);
if i2=nil then
halt(1);
o1.fi:=nil;
i1.QueryInterface(IInterface,i2);
if i2=nil then
halt(1);
o1.free;
i1.QueryInterface(IInterface,i2);
if i2=nil then
halt(1);
writeln('ok');
end.
|