* is_range_test returns false if "lower" bound is greater than "upper" bound

git-svn-id: trunk@39837 -
This commit is contained in:
florian 2018-09-27 20:24:52 +00:00
parent d5f0d8e306
commit 352fb866ef
3 changed files with 16 additions and 0 deletions

1
.gitattributes vendored
View File

@ -11714,6 +11714,7 @@ tests/tbs/tb0648.pp svneol=native#text/pascal
tests/tbs/tb0649.pp -text svneol=native#text/pascal
tests/tbs/tb0650.pp svneol=native#text/pascal
tests/tbs/tb0651.pp svneol=native#text/pascal
tests/tbs/tb0652.pp svneol=native#text/pascal
tests/tbs/tb205.pp svneol=native#text/plain
tests/tbs/tb610.pp svneol=native#text/pascal
tests/tbs/tb613.pp svneol=native#text/plain

View File

@ -439,6 +439,9 @@ implementation
cr:=t;
end;
if cl>cr then
exit;
result:=true;
end;

12
tests/tbs/tb0652.pp Normal file
View File

@ -0,0 +1,12 @@
const
w : dword = 123;
begin
if (w<=1) and (w>=10) then
halt(1);
if (w>=1) and (w<=1000) then
writeln('ok')
else
halt(1);
end.