2 -- { dg-options "-gnatws" }
4 procedure Bit_Packed_Array2
is
6 type Bit_Array
is array (integer range <>) of Boolean;
7 pragma Pack
(Bit_Array
);
10 b2
: Bit_array
(1..64);
11 res
: Bit_array
(1..64);
15 if (not((not b1
) or (not b2
))) /= res
then