Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
global2.ads
blob: 4de3158a4a2fc588275fed46b616ef7266d6a2be [
file
] [
log
] [
blame
]
package
Global2
is
type
Int_Acc
is
access
Integer
;
X
:
constant
Int_Acc
:=
new
Integer
'(34);
procedure Change_X with Global => (In_Out => X);
procedure Change2_X with Depends => (X => X);
end Global2;