Sign in
gnu
/
gcc.git
/
ab7c7b46c35ed1be68d4c020a2f20ee96f68b64b
/
.
/
gcc
/
testsuite
/
gnat.dg
/
opt13_pkg.ads
blob: f52f782f4d6f49f23a6d81d55ecd54db8083c32a [
file
] [
log
] [
blame
]
package
Opt13_Pkg
is
N
:
Natural
:=
0
;
type
My_Type
is
private
;
procedure
Allocate
(
T
:
out
My_Type
);
private
type
Data
;
type
My_Type
is
access
Data
;
end
Opt13_Pkg
;