blob: 9a63378d6aeba421f967c4c87f9a31c34e199cfb (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{ %SKIPTARGET=go32v2 }
{ %OPT=-gh }
{$ifdef fpc}
{$mode objfpc}
{$endif fpc}
uses
classes;
type
to2 = class(TObject,IInterface)
fi : TInterfacedObject;
property i : TInterfacedObject read fi implements IInterface;
end;
to1 = class(TObject,IInterface)
fi : to2;
property i : to2 read fi implements IInterface;
end;
var
o1 : to1;
o2 : to2;
i1,i2 : IInterface;
begin
o2:=to2.create;
o2.fi:=TInterfacedObject.Create;
o1:=to1.create;
o1.fi:=o2;
writeln('o1, o2 and o2.fi created');
i1:=o1;
i1.QueryInterface(IInterface,i2);
writeln('i2 queried the first time');
if i2=nil then
halt(1);
writeln('releasing and setting o1.fi to nil');
o1.fi.free;
o1.fi:=nil;
o1.free;
i1 := nil;
i2 := nil;
writeln('ok');
end.
|