aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/specs/opt3.ads
blob: 531cf59eae353b4634814abb8c9655876cf04f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- { dg-do compile }
-- { dg-options "-O3" }

with Ada.Containers.Vectors;
with Opt3_Pkg;

package Opt3 is

  type Arr is array (1 .. Opt3_Pkg.Max) of Integer;

  package Arr_Container is new Ada.Containers.Vectors (Natural, Arr);

end Opt3;