aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/decomp15.C
blob: 72e2c52f5c68cd99e4554d53b1849d067b2b46b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// { dg-do compile { target c++17 } }

struct A { bool a, b; };
struct B { int a, b; };

void
foo ()
{
  auto [ a, b ] = A ();
  for (auto [ a, b ] = A (); a; )
    ;
  if (auto [ a, b ] = A (); a)
    ;
  switch (auto [ a, b ] = B (); b)
    {
    case 2:
      break;
    }
  auto && [ c, d ] = A ();
  [[maybe_unused]] auto [ e, f ] = A ();
  alignas (A) auto [ g, h ] = A ();
  __attribute__((unused)) auto [ i, j ] = A ();
}