summaryrefslogtreecommitdiff
path: root/tests/webtbs/tw28702.pp
blob: 671af19ba4171d6f8f64882abe070222b88e1396 (plain)
1
2
3
4
5
6
7
8
var
  l: longint;
begin
  l:=5;
  { dummy random to prevent constant propagation }
  if ((l+random(1))div -1)<>-5 then
    halt(1);
end.