Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / opt11.adb
blobe02e4260c45924da2213d7b3423540d852a0c283
1 -- { dg-do compile }
2 -- { dg-options "-O" }
4 package body Opt11 is
6 procedure Proc is
7 R : Rec;
8 begin
9 R := (others => <>); -- { dg-warning "aggregate not fully initialized" }
10 end;
12 end Opt11;