aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/algol68/execute/serial-clause-6.a68
blob: 13a132f404c3d642e7e14c8bf8a0946ba9a5a022 (plain)
1
2
3
4
5
6
7
8
9
10
# { dg-options "-fstropping=upper" }  #
BEGIN ASSERT ((INT y := 10;
               INT x := 20;
               REF INT yy;
               (REF INT xx := x;
                yy := y;
                xx := yy
               )
              ) = 10)
END