view gcc/testsuite/g++.dg/cpp1z/aggr-base6.C @ 131:84e7813d76e9

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

// { dg-options "-w" }
// { dg-do run { target c++17 } }

struct A { };
struct B: A { int i; };
struct C: B, A { int j; };

constexpr C c = { { {}, 1 }, {}, 2 };

#define assert(X) do { if (!(X)) __builtin_abort(); } while(0)
int main()
{
  assert (c.i == 1 && c.j == 2);
}