Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-base2.C
blob: 217687a3fb3e5d6364cf935dc669761a88834a8f [
file
] [
log
] [
blame
]
// 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
{};