(root)/
gcc-13.2.0/
gcc/
testsuite/
gnat.dg/
specs/
small_alignment.ads
-- { dg-do compile }

package Small_Alignment is

  type Int is range -512 .. 511;
  for Int'Alignment use 1;

  type R is record
    I: Int;
  end record;
  Pragma Pack (R);

end Small_Alignment;