view gcc/testsuite/g++.dg/cpp2a/range-for17.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

// 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>();
}