瀏覽代碼

Merged revisions 2416 via svnmerge from
svn+ssh://[email protected]/FPC/svn/fpc/trunk

r2416 (jonas)
+ added

git-svn-id: branches/fixes_2_0@2423 -

Jonas Maebe 19 年之前
父節點
當前提交
6af1ccfab5
共有 2 個文件被更改,包括 17 次插入0 次删除
  1. 1 0
      .gitattributes
  2. 16 0
      tests/webtbf/tw4757.pp

+ 1 - 0
.gitattributes

@@ -5669,6 +5669,7 @@ tests/webtbf/tw4619b.pp svneol=native#text/plain
 tests/webtbf/tw4647.pp svneol=native#text/plain
 tests/webtbf/tw4651.pp svneol=native#text/plain
 tests/webtbf/tw4695.pp svneol=native#text/plain
+tests/webtbf/tw4757.pp svneol=native#text/plain
 tests/webtbf/tw4764.pp svneol=native#text/plain
 tests/webtbf/uw0744.pp svneol=native#text/plain
 tests/webtbf/uw0840a.pp svneol=native#text/plain

+ 16 - 0
tests/webtbf/tw4757.pp

@@ -0,0 +1,16 @@
+{ %fail }
+
+{$mode objfpc}
+
+type
+  tc1 = class
+    fnext: tc1;
+  end;
+
+  tc2 = class(tc1)
+    property next: tc2 read fnext write fnext;
+  end;
+
+begin
+end.
+