summaryrefslogtreecommitdiff
path: root/tests/webtbs/tw22326.pp
blob: 9ff14169340de2feb61a07137aedf3d6285e1211 (plain)
1
2
3
4
5
6
7
8
9
var
  q1: QWord;
begin
  q1:=$1020304050607080;
  if (q1 shl 0) <> q1 then
    halt(1);
  if (q1 shr 0) <> q1 then
    halt(2);
end.