Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
pack4.ads
blob: 82b76d2f4574699638bcfb0a879db39e5845d68d [
file
] [
log
] [
blame
]
package
Pack4
is
type
Buffer
is
array
(
Natural
range
<>)
of
Boolean
;
type
Root
(
Size
:
Natural
)
is
tagged record
Data
:
Buffer
(
1.
.
Size
);
end
record
;
pragma
Pack
(
Root
);
type
Derived
is
new
Root
with
null
record
;
end
Pack4
;