view gcc/testsuite/g++.dg/cpp2a/desig7.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
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 ();
}