Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-87506.C
blob62d2ddcdcf5f2918f89c325967606c076b0898b7
1 // PR c++/87506
2 // { dg-do compile { target c++11 } }
4 struct A {};
5 struct B { constexpr B (const A) {} };
6 struct C : B { using B::B; };
8 void
9 foo ()
11   C c (A{});