Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
algol68
/
execute
/
plus-string-stride-1.a68
blob: 07fdf79537c40ca2c4a2fecc8a7cdc61dd56aefa [
file
] [
log
] [
blame
]
# { dg-options "-fstropping=upper" } #
BEGIN
[,]
CHAR matrix
=
((
"1"
,
"H"
,
"3"
),
(
"4"
,
"O"
,
"6"
),
(
"7"
,
"M"
,
"9"
),
(
"8"
,
"E"
,
"2"
));
ASSERT
(
matrix
[
1
:
2
,
1
]
+
matrix
[
3
:
4
,
3
]
=
"1492"
)
END