Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
algol68
/
execute
/
ge-string-stride-1.a68
blob: 4f51d6ba6fcb80251cac0f497abbcf785c17c4b4 [
file
] [
log
] [
blame
]
# { dg-options "-fstropping=upper" } #
BEGIN
[,]
CHAR matrix
=
((
"1"
,
"0"
,
"1"
),
(
"4"
,
"0"
,
"4"
),
(
"7"
,
"0"
,
"7"
));
ASSERT
(
matrix
[
1
:
3
,
1
]
>=
matrix
[
1
:
3
,
3
]);
ASSERT
((
"1"
,
"4"
,
"7"
)
>=
matrix
[
1
:
3
,
3
])
END