Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
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
;