浏览代码

* unique iunknown problem

git-svn-id: trunk@6208 -
peter 18 年之前
父节点
当前提交
34a5236dd0
共有 3 个文件被更改,包括 26 次插入0 次删除
  1. 2 0
      .gitattributes
  2. 14 0
      tests/webtbs/tw8180.pp
  3. 10 0
      tests/webtbs/uw8180.pp

+ 2 - 0
.gitattributes

@@ -8005,6 +8005,7 @@ tests/webtbs/tw8155.pp svneol=native#text/plain
 tests/webtbs/tw8156.pp svneol=native#text/plain
 tests/webtbs/tw8171.pp svneol=native#text/plain
 tests/webtbs/tw8172.pp svneol=native#text/plain
+tests/webtbs/tw8180.pp svneol=native#text/plain
 tests/webtbs/tw8183.pp svneol=native#text/plain
 tests/webtbs/tw8199.pp svneol=native#text/plain
 tests/webtbs/tw8222.pp svneol=native#text/plain
@@ -8058,6 +8059,7 @@ tests/webtbs/uw4541.pp svneol=native#text/plain
 tests/webtbs/uw6203.pp svneol=native#text/plain
 tests/webtbs/uw6767.pp svneol=native#text/plain
 tests/webtbs/uw7381.pp svneol=native#text/plain
+tests/webtbs/uw8180.pp svneol=native#text/plain
 utils/Makefile svneol=native#text/plain
 utils/Makefile.fpc svneol=native#text/plain
 utils/README -text

+ 14 - 0
tests/webtbs/tw8180.pp

@@ -0,0 +1,14 @@
+{ %recompile }
+
+uses uw8180;
+
+type
+  tcl=class(TInterfacedObject,XStr)
+  end;
+
+var
+  x : tcl;
+begin
+  x:=tcl.create;
+  x._Addref;
+end.

+ 10 - 0
tests/webtbs/uw8180.pp

@@ -0,0 +1,10 @@
+unit uw8180;
+interface
+
+type
+  XStr=type iinterface;
+
+implementation
+
+end.
+