aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/aggr15.ads
blob: 23f26a8df7dd1300cffbd00110c75b84d2e05f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Aggr15 is

  type T is tagged record
    I : Integer;
  end record;

  type DATA_T is record
    D : T;
  end record;

  type ALL_DATA_T is array (1..2, 1..2) of DATA_T;

  function ALL_CREATE return ALL_DATA_T;

end Aggr15;