aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/eval-order7.C
blob: c6f3cc2502780ce097fccbacb085329816c93648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// PR c++/91987
// { dg-do run }
// { dg-options "-fstrong-eval-order" }

int a[4] = { 1, 2, 3, 4 };
int b[4] = { 5, 6, 7, 8 };

int
foo ()
{
  int *x = a;
  int r = x[(x = b, 3)];
  if (x != b)
    __builtin_abort ();
  return r;
}

int
main ()
{
  if (foo () != 4)
    __builtin_abort ();
}