// PR c++/55856 // { dg-do compile { target c++11 } } struct A { A(const char *); }; template struct B { T t; template constexpr B(U&& u): t(u) { } }; B b("");