blob: 58e848b9c8f3586b4b84b61c2b9def4957fafed0 [file] [log] [blame]
// PR c++/56285
// { dg-options -std=c++11 }
struct foo {
explicit foo(int&&) {}
};
struct bar: private foo {
using foo::foo;
};
int main()
{
bar b { 42 };
}