PR target/84336
[official-gcc.git] / gcc / testsuite / gnat.dg / pack22.adb
blobe84948abd2b1be84549bb547c6ffaaf76d9cfd09
1 -- { dg-do compile }
2 -- { dg-options "-O -gnatws" }
4 with Pack22_Pkg; use Pack22_Pkg;
6 procedure Pack22 is
8 package Role_Map is new Bit_Map_Generic;
10 type Role_List is new Role_Map.List;
11 Roles_1 : Role_List;
12 Roles_2 : Role_List;
13 Roles_3 : Role_List;
15 begin
16 Temp_buffer := (others => 1);
17 Temp_Buffer(2) := (0);
18 Roles_1 := Roles_2 xor Roles_3;
19 end;