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

var
  s: shortstring;
begin
  s:='abc';
  case s[1] of
    'b': writeln;
  end;
end.