aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/algol68/execute/plus-string-2.a68
blob: 6399ee1cf228466711b3282a92a0a67293b64997 (plain)
1
2
3
4
5
6
7
8
9
10
11
# { dg-options "-fstropping=upper" }  #
BEGIN PROC rec parse comment = VOID:
      BEGIN STRING content;
            done;
            100;
      done:
            ASSERT (content + "x" = "x")
      END;

      rec parse comment
END