Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / lto22_pkg2.ads
blobf3a20f8c2fa4342e79fefe1d67a0c99eac16a7db
1 package Lto22_Pkg2 is
3 subtype Index_Type is Integer range 1 .. 20;
5 type Rec (<>) is private;
7 function F return Rec;
9 private
11 type Rec (D : Index_Type := 2) is record
12 S : String (1 .. D) := "Hi";
13 end record;
15 end Lto22_Pkg2;