Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
pack7.ads
blob: 8a1250a60b96eee74fee1579db759b8b7de865ac [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
package
Pack7
is
type R
(
D
:
Natural
)
is
record
S
:
String
(
1
..
D
);
N
:
Natural
;
B
:
Boolean
;
end
record
;
for
R
'Alignment use 4;
pragma Pack (R);
end Pack7;