aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/range-for17.C
blob: 2e8734b795df978448dae7dc64f118bbe66783e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// PR c++/87152
// { dg-do run }
// { dg-options "-std=c++2a" }

struct A { int i; long long j; } a[64];

template<typename>
void foo ()
{
  A b = { 1, 2 };
  for (auto & [ u, v ] : a)
    {
      u = 2;
      v = 3;
    }

  for (auto [x, y] = b; auto [ u, v ] : a)
    if (y + u != x + v)
      __builtin_abort ();

  for (auto [x, y] = b; auto & [ u, v ] : a)
    if (y + u != x + v)
      __builtin_abort ();
}

int
main ()
{
  foo<int>();
}