Browse Source

* test for already fixed issue #32139

git-svn-id: trunk@48501 -
florian 4 năm trước cách đây
mục cha
commit
a67c184200
2 tập tin đã thay đổi với 12 bổ sung0 xóa
  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.