PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gnat.dg / enum3.adb
blob1cb6c4b564861094e2bb5ffc280290f74768b912
1 -- { dg-do run }
3 procedure Enum3 is
4 type Enum is (Aaa, Bbb, Ccc);
5 for Enum use (1,2,4);
6 begin
7 for Lo in Enum loop
8 for Hi in Enum loop
9 declare
10 subtype S is Enum range Lo .. Hi;
11 type Vector is array (S) of Integer;
12 Vec : Vector;
13 begin
14 for I in S loop
15 Vec (I) := 0;
16 end loop;
17 if Vec /= (S => 0) then
18 raise Program_Error;
19 end if;
20 end;
21 end loop;
22 end loop;
23 end;