Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
algol68
/
execute
/
rowing-2.a68
blob: d8c66deaa5ee38dbfc9589dc4e16d64170ddef63 [
file
] [
log
] [
blame
]
# { dg-options "-fstropping=upper" } #
BEGIN
[][]
INT a
=
10
;
ASSERT
(
a
[
1
][
1
]
=
10
);
ASSERT
(
LWB a
=
1
AND UPB a
=
1
AND ELEMS a
=
1
);
ASSERT
(
LWB a
[
1
]
=
1
AND UPB a
[
1
]
=
1
AND ELEMS a
[
1
]
=
1
)
END