浏览代码

* test for already fixed issue #32139

git-svn-id: trunk@48501 -
florian 4 年之前
父节点
当前提交
a67c184200
共有 2 个文件被更改,包括 12 次插入0 次删除
  1. 1 0
      .gitattributes
  2. 11 0
      tests/webtbs/tw32139.pp

+ 1 - 0
.gitattributes

@@ -18303,6 +18303,7 @@ tests/webtbs/tw32111.pp svneol=native#text/pascal
 tests/webtbs/tw32115.pp svneol=native#text/pascal
 tests/webtbs/tw32118.pp svneol=native#text/pascal
 tests/webtbs/tw3212.pp svneol=native#text/plain
+tests/webtbs/tw32139.pp -text svneol=native#text/pascal
 tests/webtbs/tw3214.pp svneol=native#text/plain
 tests/webtbs/tw32150.pp svneol=native#text/pascal
 tests/webtbs/tw3216.pp svneol=native#text/plain

+ 11 - 0
tests/webtbs/tw32139.pp

@@ -0,0 +1,11 @@
+{ %OPT=-Seh }
+program Test;
+
+{$HINTS ON}
+
+var
+  cur: Currency;
+begin
+  cur := 3.5;
+  cur := cur / 1.5;
+end.