* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git] / gcc / testsuite / gnat.dg / pack13_pkg.ads
blobafe8bec8f793499f6d205c259ea7521352f22d99
1 generic
3 Size : Positive;
5 package Pack13_Pkg is
7 type Object is private;
9 private
11 type Bit is range 0 .. 1;
12 for Bit'size use 1;
14 type Object is array (1 .. Size) of Bit;
15 pragma Pack (Object);
17 end Pack13_Pkg;