Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
opt99_pkg2.ads
blob: 09aaff14e014162106e7cbfdfb84939d3f68e6ed [
file
] [
log
] [
blame
]
package
Opt99_Pkg2
is
function
Get_Max
return
Positive
is
(
4
);
C
:
constant
Positive
:=
Get_Max
;
type
Arr
is
array
(
1
..
C
)
of
Integer
;
type
Root
is
tagged record
Data
:
Arr
;
end
record
;
end
Opt99_Pkg2
;