blob: 088a77e4af67e61b349c773c23a9d11316175b8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{%FAIL}
{ duplicate labels in different cases, one of them is range }
{$H+}
var
my_str: string;
i: integer;
begin
my_str := 'cab';
i := -1;
case my_str of
'a'..'b': i := 1;
'c': i := 2;
'c'..'d': i := 3;
else i := 0;
end;
if (i <> 3) then begin
writeln('Error');
Halt(1);
end;
end.
|