Browse Source

* uncommited overleft, test not working yet

git-svn-id: trunk@10762 -
florian 17 years ago
parent
commit
17c533849b
2 changed files with 44 additions and 0 deletions
  1. 1 0
      .gitattributes
  2. 43 0
      tests/test/timplements7.pp

+ 1 - 0
.gitattributes

@@ -7378,6 +7378,7 @@ tests/test/timplements3.pp svneol=native#text/plain
 tests/test/timplements4.pp svneol=native#text/plain
 tests/test/timplements4a.pp svneol=native#text/plain
 tests/test/timplements4b.pp svneol=native#text/plain
+tests/test/timplements7.pp svneol=native#text/plain
 tests/test/timplprog.pp svneol=native#text/plain
 tests/test/tindex.pp svneol=native#text/plain
 tests/test/tinivar.pp svneol=native#text/plain

+ 43 - 0
tests/test/timplements7.pp

@@ -0,0 +1,43 @@
+{ %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;
+
+  writeln('ok');
+end.
+