summaryrefslogtreecommitdiff
path: root/tests/test/tcasecov8.pp
blob: 8ebff02afb7bddeb127876fa45f51d552b81c396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ %opt=-Sew }
{ %norun }

const
  OT_SIZE_MASK = $3000001F;
var
  l: longint;
begin
  l:=1;
  case l and OT_SIZE_MASK of
    1: writeln;
  end;
end.