summaryrefslogtreecommitdiff
path: root/tests/test/tcase5.pp
blob: 9e11f072639e84a09bd3e0d939ba9ca95f6c5848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ comparsion of one-symbol strings in ranges }

{$H+}
var
  my_str: string;
  i: integer;

begin
  my_str := 'c';
  i := -1;

  case my_str of
    'a'..'b': i := 1;
    'c'..'d': i := 2;
    else i := 0;
  end;

  if (i <> 2) then begin
    writeln('Error');
    Halt(1);
  end;
end.