Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
prot2_pkg2.ads
blob: cdd436b8afb561d1a9a1f1529bbc680bac1087b0 [
file
] [
log
] [
blame
]
generic
type T
is
private
;
package
Prot2_Pkg2
is
type
Id
is
private
;
procedure
Create
(
B
:
out
Id
);
procedure
Delete
(
B
:
in
out
Id
);
private
type
Rec
;
type
Id
is
access
Rec
;
end
Prot2_Pkg2
;