Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
pack2.ads
blob: 7272048a1bd4032b054d97dc2d4ae2354b1600f6 [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
package
Pack2
is
type
Rec
is
record
Ptr
:
access
Character
;
Int
:
Integer
;
end
record
;
type
Table
is
array
(
1.
.
2
)
of rec
;
pragma
Pack
(
Table
);
end
Pack2
;