Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
prot3_pkg.ads
blob: b4cce90a54378fa5c641cf0e580ae035f7919f80 [
file
] [
log
] [
blame
]
package
Prot3_Pkg
is
type
Rec
is
record
V1
:
Short_Integer
;
V2
:
Short_Integer
;
end
record
with
Volatile_Full_Access
;
protected
type
Prot
is
procedure
Foo
(
J
:
Short_Integer
);
private
Val
:
Rec
;
end
Prot
;
P
:
Prot
;
end
Prot3_Pkg
;