Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
algol68
/
execute
/
timesab-string-1.a68
blob: 3ff48fe91f5372d7eee447411643ff58f30fd0eb [
file
]
# { dg-options "-fstropping=upper" } #
BEGIN
STRING foo
:=
"foo"
;
foo TIMESAB
1
;
ASSERT
(
foo
=
"foo"
);
foo
*:=
3
;
ASSERT
(
foo
=
"foofoofoo"
)
END