Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gnat.dg / slice2.ads
blobf1b8674fb8e34d787594e701b6cf0845130f620c
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;