summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/lto6.adb
blob: 69cadc8115c934a2ac352a87964a916ea35f99be (plain)
1
2
3
4
5
6
7
8
9
10
11
-- { dg-do run }
-- { dg-options "-gnat05 -O2 -flto" { target lto } }

with Lto6_Pkg; use Lto6_Pkg;

procedure Lto6 is
  type Enum is (A, B, C, D);
  Table : array (B .. C, 1 .. 1) of F_String := (others => (others => Null_String));
begin
  Table := (others => (others => Null_String));
end;