Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
aggr3.ads
blob: 09b4466e0e56df697497071f41dc5ca6caf6772f [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
with
Aggr3_Pkg
;
use
Aggr3_Pkg
;
package
Aggr3
is
type
Enum
is
(
One
);
type R
(
D
:
Enum
:=
One
)
is
record
case
D
is
when
One
=>
The_T
:
T
;
end
case
;
end
record
;
My_R
:
R
:=
(
D
=>
One
,
The_T
=>
My_T
);
end
Aggr3
;