Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
inh-ctor23.C
blob: 1bb05a25c669d8ad02d3b3a292ed95b15594d737 [
file
] [
log
] [
blame
]
// PR c++/78124
// { dg-do compile { target c++11 } }
struct
base
{
explicit
constexpr
base
(
int
&&)
{}
};
struct
derived
:
base
{
using
base
::
base
;
};
int
main
()
{
derived d
{
0
};
}