Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
generic_inst2.ads
blob: 3124a1d3b75545808d6b22570edd12222249e597 [
file
] [
log
] [
blame
]
with
Generic_Inst2_C
;
package
Generic_Inst2
is
type T
is
private
;
procedure
Foo
(
X
:
not
null
access T
);
package
CI
is
new
Generic_Inst2_C
(
T
,
Foo
=>
Foo
);
private
type S
is
access
Integer
;
type T
is
new
S
;
end
;