* fi.po: Update.
[official-gcc.git] / gcc / testsuite / gnat.dg / aggr15.ads
blob70eb22398ee2fc779bbb3060fdd73325d08a1c3e
1 package Aggr15 is
3 type T is tagged record
4 I : Integer;
5 end record;
7 type DATA_T is record
8 D : T;
9 end record;
11 type ALL_DATA_T is array (1..2, 1..2) of DATA_T;
13 function ALL_CREATE return ALL_DATA_T;
15 end Aggr15;