(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
constexpr-ctor11.C
// PR c++/55856
// { dg-do compile { target c++11 } }

struct A
{
  A(const char *);
};

template <class T>
struct B
{
  T t;
  template <class U> constexpr B(U&& u): t(u) { }
};

B<A&&> b("");