Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
access2.ads
blob: ff0046f8ceff7c73d148ab56526dc381b173e7ef [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
package
Access2
is
type
Priv
;
type
Inc
is
access
Priv
;
type
Priv
is
access
Inc
;
C
:
constant
Priv
:=
new
Inc
;
end
Access2
;