Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gnat.dg
/
aggr11_pkg.ads
blob: 139c9efdac6da624e35b9eb3b1ecb563d4b5499d [
file
] [
log
] [
blame
]
package
Aggr11_Pkg
is
type
Error_Type
is
(
No_Error
,
Error
);
type
Rec
(
Kind
:
Error_Type
:=
No_Error
)
is
record
case
Kind
is
when
Error
=>
null
;
when
others
=>
B
:
Boolean
;
end
case
;
end
record
;
type
Arr
is
array
(
1.
.
6
)
of
Rec
;
end
Aggr11_Pkg
;