Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gnat.dg/validity_check.adb

19 lines
274 B
Ada

-- { dg-do run }
-- { dg-options "-O -gnatn -gnatVa -gnatws" }
pragma Initialize_Scalars;
procedure Validity_Check is
type Small_Int is mod 2**6;
type Arr is array (1 .. 16) of Small_Int;
pragma Pack (Arr);
S : Small_Int;
A : Arr;
begin
null;
end;