aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/array40_pkg.ads
blob: a3cec8b43f47f559d2249a8e356502721730491e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package Array40_Pkg is

  type Rec is record
    I : Integer;
  end record;

  type Arr is array (1 .. 4) of Rec;
  for Arr'Component_Size use 40;

  A : Arr;

end Array40_Pkg;