Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / array20.adb
blob86eb61b4ce8b81d6863cbf5adf50cff5022ff514
1 -- { dg-do assemble }
3 package body Array20 is
5 type Arr is array (Positive range <>) of Integer;
7 type P_Arr is access Arr;
9 N : constant P_Arr := null;
11 Table : P_Arr := N;
13 end Array20;