Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gnat.dg
/
addr2_p.ads
blob: dd409d6f6677891902f86b38cbcfa79f8cfcedf8 [
file
] [
log
] [
blame
]
package
addr2_p
is
type
Block
is
array
(
1
..
9
)
of
Integer
;
procedure
Process
(
Blk
:
Block
);
B1
:
constant
Block
:=
Block
'((1,2,3,4,5, others => 0));
B2 : constant Block := (1,2,3,4,5, others => 0);
end;