view gcc/testsuite/g++.dg/cpp2a/desig7.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
line wrap: on
line source

// PR c++/84874
// { dg-do run { target c++11 } }
// { dg-options "" }

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

void
foo (B *x)
{
  *x = { .d = { .b = 5 } };
}

void
bar (A *x)
{
  *x = { .b = 6 };
}

int
main ()
{
  B b = { { 2, 3 } };
  foo (&b);
  if (b.d.a != 0 || b.d.b != 5)
    __builtin_abort ();
  b.d.a = 8;
  bar (&b.d);
  if (b.d.a != 0 || b.d.b != 6)
    __builtin_abort ();
}