Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
algol68
/
execute
/
identity-declaration-multiple-empty-4.a68
blob: 69bd760298a7c6710811ff96a0af0eec9c5f813a [
file
] [
log
] [
blame
]
# { dg-options "-fstropping=upper" } #
BEGIN
PROC foo
=
([]
INT a
)
VOID
:
(
ASSERT
(
LWB a
=
1
AND UPB a
=
0
AND ELEMS a
=
0
));
foo
(())
END