PR target/84336
[official-gcc.git] / gcc / testsuite / gnat.dg / slice2.ads
blobd1f943a80cfa23ffa30a0b9f734e003fedc8e0db
1 package Slice2 is
3 type R1 is record
4 Text : String (1 .. 30);
5 end record;
7 type R2 is record
8 Text : String (1 .. 8);
9 B : Boolean := True;
10 end record;
12 function F (I : R1) return R2;
14 end Slice2;