1// PR c++/59938
2// { dg-do compile { target c++11 } }
3
4struct Data { const char* const& name; };
5constexpr Data d = { "" };
6