Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gnat.dg
/
access5.ads
blob: 81ab3b34f1f233ec801da5337c10f236a629a53e [
file
] [
log
] [
blame
]
package
Access5
is
type
Vec
;
type
Ptr
is
access all
Vec
;
type
Vec
is
array
(
1.
.
3
)
of
Ptr
;
function
F
return
Ptr
;
pragma
Import
(
Ada
,
F
);
Tail
:
Vec
:=
(
F
,
F
,
F
);
procedure
Dummy
;
end
;