Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gnat.dg
/
aggr24.adb
blob: b739c54fdc4a657b62da29d4ed75de6edaa67041 [
file
] [
log
] [
blame
]
--
{
dg
-
do
run
}
with
Aggr24_Pkg
;
use
Aggr24_Pkg
;
procedure
Aggr24
is
V
:
Rec
;
begin
V
.
S
:=
"Hello"
;
Init
(
V
);
if
V
.
S
/=
"Hello"
then
raise
Program_Error
;
end
if
;
end
;