fpc/tests/webtbs/tw32139.pp
florian a67c184200 * test for already fixed issue #32139
git-svn-id: trunk@48501 -
2021-02-02 21:36:54 +00:00

12 lines
119 B
ObjectPascal

{ %OPT=-Seh }
program Test;
{$HINTS ON}
var
cur: Currency;
begin
cur := 3.5;
cur := cur / 1.5;
end.