Sign in
gnu
/
gcc.git
/
ab7c7b46c35ed1be68d4c020a2f20ee96f68b64b
/
.
/
gcc
/
testsuite
/
gnat.dg
/
array25_pkg.ads
blob: 1965bab249b4a007680a83928dae9cb4114c6e4b [
file
] [
log
] [
blame
]
generic
UB1
:
Natural
;
UB2
:
Natural
;
package
Array25_Pkg
is
type
Arr1
is
array
(
1
..
UB1
)
of
Integer
;
type
Rec
is
record
Data
:
Arr1
;
end
record
;
type
Arr2
is
array
(
1
..
UB2
)
of
Rec
;
procedure
Get
(
A
:
out
Arr2
);
end
Array25_Pkg
;