mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 13:28:07 +02:00
* is_range_test returns false if "lower" bound is greater than "upper" bound
git-svn-id: trunk@39837 -
This commit is contained in:
parent
d5f0d8e306
commit
352fb866ef
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -11714,6 +11714,7 @@ tests/tbs/tb0648.pp svneol=native#text/pascal
|
|||||||
tests/tbs/tb0649.pp -text svneol=native#text/pascal
|
tests/tbs/tb0649.pp -text svneol=native#text/pascal
|
||||||
tests/tbs/tb0650.pp svneol=native#text/pascal
|
tests/tbs/tb0650.pp svneol=native#text/pascal
|
||||||
tests/tbs/tb0651.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/tb205.pp svneol=native#text/plain
|
||||||
tests/tbs/tb610.pp svneol=native#text/pascal
|
tests/tbs/tb610.pp svneol=native#text/pascal
|
||||||
tests/tbs/tb613.pp svneol=native#text/plain
|
tests/tbs/tb613.pp svneol=native#text/plain
|
||||||
|
@ -439,6 +439,9 @@ implementation
|
|||||||
cr:=t;
|
cr:=t;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
if cl>cr then
|
||||||
|
exit;
|
||||||
|
|
||||||
result:=true;
|
result:=true;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
12
tests/tbs/tb0652.pp
Normal file
12
tests/tbs/tb0652.pp
Normal 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.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user