Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / aggr26.adb
blob45370fd098ed883c059f4958155a506180dc62db
1 -- { dg-do compile }
3 procedure Aggr26 is
5 type Row is array (Positive) of Integer;
6 H : array (Positive) of Row := (others => (others => 0)); -- { dg-warning "Storage_Error will be raised at run time" }
8 begin
9 null;
10 end Aggr26;