Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
static_initializer4.ads
blob: a1a5e846e3301baadd6d4ae9783ed0c3a3146915 [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
package
Static_Initializer4
is
type R
is
tagged record
b
:
Boolean
;
end
record
;
type NR
is
new
R
with
null
record
;
C
:
NR
:=
(
b
=>
True
);
end
Static_Initializer4
;