aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-base2.C
blob: 217687a3fb3e5d6364cf935dc669761a88834a8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// PR c++/46293
// { dg-do compile { target c++11 } }

struct A
{
};

struct C
{
  int i;
  constexpr C(int i): i(i) {}
};

struct B: A, C
{
  constexpr B(): A(), C(42) { }
};

constexpr B b{};