Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
pack9.ads
blob: 9d5e02764be810bb74ba7c6de10283ef93a3bb4f [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
package
Pack9
is
subtype
Zero
is
Natural
range
0
..
0
;
type
Rec
(
D
:
Boolean
)
is
record
case
D
is
when
True
=>
Z
:
Zero
;
when
False
=>
null
;
end
case
;
end
record
;
pragma
Pack
(
Rec
);
end
Pack9
;