Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
access_discr2.adb
blob: ceeeb46453551f9e5465bd5b241650f846397b7a [
file
] [
log
] [
blame
]
--
{
dg
-
do
run
}
procedure access_discr2
is
type X
(
I
:
not
null
access
Integer
)
is
tagged
null
record
;
I
:
aliased
Integer
:=
8
;
Y
:
X
(
I
'Access);
begin
null;
end access_discr2;