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

{ should not print a warning }
var
  l: qword;
begin
  l:=1;
  case l of
    2: writeln;
  end;
end.