* test for already fixed issue #32139

git-svn-id: trunk@48501 -
This commit is contained in:
florian 2021-02-02 21:36:54 +00:00
parent d4d401b26d
commit a67c184200
2 changed files with 12 additions and 0 deletions

1
.gitattributes vendored
View File

@ -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
tests/webtbs/tw32139.pp Normal file
View File

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