瀏覽代碼

Merged revisions 246,269 via svnmerge from
/trunk

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

peter 20 年之前
父節點
當前提交
1d94bb89d7
共有 3 個文件被更改,包括 18 次插入0 次删除
  1. 1 0
      .gitattributes
  2. 6 0
      .gitignore
  3. 11 0
      tests/webtbs/tw4055.pp

+ 1 - 0
.gitattributes

@@ -5910,6 +5910,7 @@ tests/webtbs/tw3973.pp svneol=native#text/plain
 tests/webtbs/tw3977.pp svneol=native#text/plain
 tests/webtbs/tw3977.txt svneol=native#text/plain
 tests/webtbs/tw4013.pp svneol=native#text/plain
+tests/webtbs/tw4055.pp svneol=native#text/plain
 tests/webtbs/tw4058.pp svneol=native#text/plain
 tests/webtbs/ub1873.pp svneol=native#text/plain
 tests/webtbs/ub1883.pp svneol=native#text/plain

+ 6 - 0
.gitignore

@@ -0,0 +1,6 @@
+compiler/*.bak
+compiler/*.exe
+compiler/*.o
+compiler/*.ppu
+compiler/*.s
+compiler/*.tmp

+ 11 - 0
tests/webtbs/tw4055.pp

@@ -0,0 +1,11 @@
+{$WRITEABLECONST OFF}
+
+procedure TestBuf(const Buf; Size: Integer);
+begin
+end;
+
+const A : Byte = 1;
+
+begin
+  TestBuf(A, 1);
+end.